Skip to content

Commit

Permalink
Merge pull request #7 from sittner/machinekit-posix
Browse files Browse the repository at this point in the history
fixed sim makefile issue
  • Loading branch information
sittner committed Mar 11, 2015
2 parents d3f051e + 721c8a6 commit 9b769c7
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 9b769c7

Please sign in to comment.