]> git.stg.codes - stg.git/blobdiff - tests/Makefile
Some minor changes in bf stream.
[stg.git] / tests / Makefile
index 2364db7487a8acab5a4f868e414ff2b08de8b6ea..ca61b482b41be26df0b146a6d68fb0669b3d9654 100644 (file)
@@ -1,30 +1,59 @@
-CXXFLAGS+=-g3 -Wall -W -Wextra -DLINUX -I../include -I../projects/stargazer -I../stglibs/stgconffiles.lib -I.
-LIBS=-lpthread
-PROG=tests
+INCS = -I . \
+       -I ../include \
+       -I ../stglibs/common.lib/include \
+       -I ../stglibs/conffiles.lib/include \
+       -I ../stglibs/logger.lib/include \
+       -I ../stglibs/scriptexecuter.lib/include \
+       -I ../stglibs/crypto.lib/include \
+       -I ../projects/stargazer
+DEFS = -DLINUX \
+       -DUSE_ABSTRACT_SETTINGS
+CFLAGS += -g3 -Wall -W -Wextra $(INCS) $(DEFS)
+CXXFLAGS = $(CFLAGS)
+LIBS = -lpthread
+PROG = tests
 
-SOURCES=main.cpp \
-       test_raw_ip.cpp \
-       test_admin_conf.cpp \
-       test_tariff.cpp \
-       test_stgconffiles.cpp \
-       ../projects/stargazer/tariff.cpp \
-       ../stglibs/stgconffiles.lib/stgconffiles.cpp
+SOURCES = main.cpp \
+         test_raw_ip.cpp \
+         test_admin_conf.cpp \
+         test_tariff.cpp \
+         test_conffiles.cpp \
+         test_fee_charge_rules.cpp \
+         test_reconnect_on_tariff_change.cpp \
+         test_crypto.cpp \
+         test_bfstream.cpp \
+         ../projects/stargazer/tariff_impl.cpp \
+         ../projects/stargazer/user_impl.cpp \
+         ../projects/stargazer/user_property.cpp \
+         ../stglibs/conffiles.lib/conffiles.cpp \
+         ../stglibs/common.lib/common.cpp \
+         ../stglibs/logger.lib/logger.cpp \
+         ../stglibs/scriptexecuter.lib/scriptexecuter.cpp \
+         ../stglibs/crypto.lib/bfstream.cpp \
+         ../stglibs/crypto.lib/blowfish.c
 
-all: $(PROG) 
+.PHONY: all clean
 
-$(PROG): $(subst .cpp,.o,$(SOURCES))
+all: $(PROG)
+
+$(PROG): $(addsuffix .o,$(basename $(SOURCES)))
        $(CXX) $(LDFLAGS) $^ $(LIBS) -o $@
 
 clean:
-       rm -f *.o *.d $(PROG)
+       rm -f $(addsuffix .o,$(basename $(SOURCES))) $(addsuffix .d,$(SOURCES)) $(PROG)
 
 ifneq ($(MAKECMDGOALS),distclean)
 ifneq ($(MAKECMDGOALS),clean)
--include $(subst .cpp,.d,$(SOURCES))
+-include $(addsuffix .d,$(SOURCES))
 endif
 endif
 
-%.d: %.cpp
-       @$(CC) -MM $(CXXFLAGS) $< > $@.$$$$; \
+%.cpp.d: %.cpp
+       @$(CXX) -MM $(CXXFLAGS) $< > $@.$$$$; \
+       sed 's,\($*\).o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
+       rm -f $@.$$$$
+
+%.c.d: %.c
+       @$(CC) -MM $(CFLAGS) $< > $@.$$$$; \
        sed 's,\($*\).o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
        rm -f $@.$$$$