diff --git a/src/xpdev/GNUmakefile b/src/xpdev/GNUmakefile index d7b0b960975bf3013d0e0464f0471e5adb57e0e4..9fa27e5063ae2d62a00ce14d604576c92cd4aeac 100644 --- a/src/xpdev/GNUmakefile +++ b/src/xpdev/GNUmakefile @@ -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 $@