Skip to content

Commit

Permalink
fixed sim makefile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sittner committed Mar 11, 2015
1 parent d3f051e commit 721c8a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/realtime.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module = $(patsubst %.o,%.so,$(obj-m))
EXTRA_CFLAGS := $(filter-out -Wframe-larger-than=%,$(EXTRA_CFLAGS))

$(module): $(lcec-objs)
$(CC) -shared -o $@ $< -Wl,-rpath,$(LIBDIR) -L$(LIBDIR) -llinuxcnchal -lethercat
$(CC) -shared -o $@ $(lcec-objs) -Wl,-rpath,$(LIBDIR) -L$(LIBDIR) -llinuxcnchal -lethercat -lrt

%.o: %.c
$(CC) -o $@ $(EXTRA_CFLAGS) -Os -c $<
Expand Down

0 comments on commit 721c8a6

Please sign in to comment.