X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/87aae6506d6b530ab954cd8eeb7c3d40664115bc..4077971cebaa4f3d876e53e82a7f60024f4690c2:/tests/Makefile diff --git a/tests/Makefile b/tests/Makefile deleted file mode 100644 index 2ae5eb4e..00000000 --- a/tests/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -CXXFLAGS+=-g3 -Wall -W -pedantic -DLINUX -I../include -I../projects/stargazer -I../stglibs/conffiles.lib -I. -LIBS=-lpthread -PROG=tests - -SOURCES=main.cpp \ - test_raw_ip.cpp \ - test_admin_conf.cpp \ - test_tariff.cpp \ - test_conffiles.cpp \ - ../projects/stargazer/tariff.cpp \ - ../stglibs/conffiles.lib/conffiles.cpp - -all: $(PROG) - -$(PROG): $(subst .cpp,.o,$(SOURCES)) - $(CXX) $(LDFLAGS) $^ $(LIBS) -o $@ - -clean: - rm -f *.o *.d - -ifneq ($(MAKECMDGOALS),distclean) -ifneq ($(MAKECMDGOALS),clean) --include $(subst .cpp,.d,$(SOURCES)) -endif -endif - -%.d: %.cpp - @$(CC) -MM $(CXXFLAGS) $< > $@.$$$$; \ - sed 's,\($*\).o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \ - rm -f $@.$$$$