diff options
-rw-r--r-- | compatMakefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compatMakefile b/compatMakefile index 7c09d38..cd90220 100644 --- a/compatMakefile +++ b/compatMakefile @@ -150,11 +150,11 @@ make: $(objs) # -I. is needed to find config.h in the build directory. .c.o: - $(CC) $(CFLAGS) $(defines) -c -I. \ - -I$(srcdir) -I$(srcdir)/glob $< $(OUTPUT_OPTION) + $(CC) $(defines) -c -I. -I$(srcdir) -I$(srcdir)/glob \ + $(CFLAGS) $< $(OUTPUT_OPTION) remote.o: remote.c - $(CC) $(CFLAGS) $(defines) $(REMOTE) -c -I. \ - -I$(srcdir) $(srcdir)/remote.c + $(CC) $(defines) $(REMOTE) -c -I. -I$(srcdir) \ + $(CFLAGS) $(srcdir)/remote.c # For some losing Unix makes. MAKE = make |