patch-src_Makefile 670 B

123456789101112131415161718192021
  1. $Id$
  2. --- iptraf-3.0.0.orig/src/Makefile Tue Sep 13 11:11:17 2005
  3. +++ iptraf-3.0.0/src/Makefile Tue Jan 16 22:27:34 2007
  4. @@ -113,7 +113,7 @@ iptraf: $(OBJS) textlib
  5. $(CC) $(LDOPTS) $(PROF) -o iptraf $(OBJS) $(LIBS)
  6. textlib:
  7. - make -C ../support
  8. + $(MAKE) -C ../support
  9. %.o: %.c *.h version
  10. $(CC) $(CFLAGS) $(DIRS) $(INCLUDEDIR) $(VERSION) $(PLATFORM) $(PROF) $(DEBUG) $(EXECPERM) $(BSSETTING) -c -o $*.o $<
  11. @@ -132,7 +132,7 @@ rawtime: rawtime.c
  12. clean:
  13. rm -f *.o *~ core $(BINS)
  14. - make -C ../support clean
  15. + $(MAKE) -C ../support clean
  16. # I just included this rule to clear out the .o files, leaving the
  17. # executables, stripped and ready for packing.