Skip to content
Snippets Groups Projects
Commit 8eaefc88 authored by rswindell's avatar rswindell
Browse files

Fixed for Unix.

parent 8b2c0fb3
Branches
Tags
No related merge requests found
......@@ -47,7 +47,7 @@ endif
include objects.mk # defines $(OBJS)
all: $(ODIR) $(ODIR)/wraptest.exe
all: $(ODIR) $(ODIR)/wraptest
# Implicit C Compile Rule
$(ODIR)/%.o : %.c
......@@ -59,7 +59,7 @@ $(ODIR):
mkdir $(ODIR)
# Executable Build Rule
$(ODIR)/wraptest: $(ODIR)\wraptest.o $(OBJS)
$(ODIR)/wraptest: $(ODIR)/wraptest.o $(OBJS)
@echo Linking $@
@$(CC) $(LFLAGS) $^ -o $@
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment