patch-src_Makefile 784 B

12345678910111213141516171819202122232425262728
  1. $Id$
  2. --- iptraf-3.0.0.orig/src/Makefile 2005-09-13 11:11:17.000000000 +0200
  3. +++ iptraf-3.0.0/src/Makefile 2010-10-05 10:07:10.000000000 +0200
  4. @@ -107,13 +107,13 @@ BINS = iptraf rvnamed rawtime
  5. all: $(BINS)
  6. @echo
  7. - @size $(BINS)
  8. + #@size $(BINS)
  9. iptraf: $(OBJS) textlib
  10. $(CC) $(LDOPTS) $(PROF) -o iptraf $(OBJS) $(LIBS)
  11. textlib:
  12. - make -C ../support
  13. + $(MAKE) -C ../support
  14. %.o: %.c *.h version
  15. $(CC) $(CFLAGS) $(DIRS) $(INCLUDEDIR) $(VERSION) $(PLATFORM) $(PROF) $(DEBUG) $(EXECPERM) $(BSSETTING) -c -o $*.o $<
  16. @@ -132,7 +132,7 @@ rawtime: rawtime.c
  17. clean:
  18. rm -f *.o *~ core $(BINS)
  19. - make -C ../support clean
  20. + $(MAKE) -C ../support clean
  21. # I just included this rule to clear out the .o files, leaving the
  22. # executables, stripped and ready for packing.