]> git.stg.codes - stg.git/blobdiff - tests/Makefile
TEST_SETTINGS_LOCAL moved outside the namespace, more assertions added
[stg.git] / tests / Makefile
index a924540f1f4e8b54b77b2362a8d9eec9a9eae0eb..ac6e4e10158433e2b0984b3674820566f38b8d3b 100644 (file)
@@ -1,4 +1,4 @@
-CXXFLAGS+=-g3 -Wall -W -pedantic -DLINUX -I../include -I../projects/stargazer
+CXXFLAGS+=-g3 -Wall -W -Wextra -DLINUX -I../include -I../projects/stargazer -I../stglibs/stgconffiles.lib -I. -DUSE_ABSTRACT_SETTINGS
 LIBS=-lpthread
 PROG=tests
 
@@ -6,15 +6,29 @@ SOURCES=main.cpp \
        test_raw_ip.cpp \
        test_admin_conf.cpp \
        test_tariff.cpp \
-       ../projects/stargazer/tariff.cpp
+       test_conffiles.cpp \
+       test_fee_charge_rules.cpp \
+       test_reconnect_on_tariff_change.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
 
-all: $(PROG) 
+.PHONY: all includes clean
+
+all: includes $(PROG)
+
+includes:
+       make -C ../stglibs includes
 
 $(PROG): $(subst .cpp,.o,$(SOURCES))
        $(CXX) $(LDFLAGS) $^ $(LIBS) -o $@
 
 clean:
-       rm -f *.o *.d
+       rm -f *.o *.d $(PROG)
 
 ifneq ($(MAKECMDGOALS),distclean)
 ifneq ($(MAKECMDGOALS),clean)