From 8eaefc88d76dbccc1d8429bb77493fa4a0db0a95 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sat, 6 Apr 2002 02:04:13 +0000 Subject: [PATCH] Fixed for Unix. --- src/xpdev/GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xpdev/GNUmakefile b/src/xpdev/GNUmakefile index d7b0b96097..9fa27e5063 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 $@ -- GitLab