From c26565727fadf8b516111ec34aa4fceaf0121b71 Mon Sep 17 00:00:00 2001 From: schodet Date: Thu, 8 May 2003 21:23:21 +0000 Subject: Mise en place du système de makefiles. --- 2003/i/buzz/src/vision/GNUmakefile | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 2003/i/buzz/src/vision/GNUmakefile (limited to '2003/i/buzz/src/vision/GNUmakefile') diff --git a/2003/i/buzz/src/vision/GNUmakefile b/2003/i/buzz/src/vision/GNUmakefile deleted file mode 100644 index 6527e4e..0000000 --- a/2003/i/buzz/src/vision/GNUmakefile +++ /dev/null @@ -1,29 +0,0 @@ -SRCDIR = .. -CXXFLAGS = -Wall -g -CPPFLAGS = -I$(SRCDIR) -I/usr/pkg/include -LDFLAGS = -L/usr/pkg/lib -LDADD = -lnetpbm - -TARGETS = test_image vision.a -test_image_SOURCES = test_image.cc image.cc thresholds.cc -vision_a_SOURCES = image.cc thresholds.cc - -all: $(TARGETS) - -test_image: $(test_image_SOURCES:%.cc=%.o) - $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $^ $(LDADD) - -vision.a: ${vision_a_SOURCES:%.cc=vision.a(%.o)} - -.dep/%.d: %.cc .dep - @set -e; $(CC) -M $(CPPFLAGS) $< \ - | sed 's/\($*\)\.o[ :]*/\1.o .dep\/$*.d : /g' > $@; \ - [ -s $@ ] || rm -f $@ - -include $(test_image_SOURCES:%.cc=.dep/%.d) - -.dep: - @mkdir .dep - -clean: - rm -f $(TARGETS) *.o -- cgit v1.2.3