X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/3886ef930e3fd54894b8798ab17ef4d3bc0b995a..6f0e2096e9604b62afdc9b6edc5f783cc11d5f3a:/tests/Makefile diff --git a/tests/Makefile b/tests/Makefile index a924540f..6c52d9ea 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,20 +1,35 @@ -CXXFLAGS+=-g3 -Wall -W -pedantic -DLINUX -I../include -I../projects/stargazer -LIBS=-lpthread -PROG=tests +CFLAGS += -g3 -Wall -W -Wextra -DLINUX -I../include -I../projects/stargazer -I../stglibs/stgconffiles.lib -I. -DUSE_ABSTRACT_SETTINGS -DLINUX +CXXFLAGS = ${CFLAGS} +LIBS = -lpthread +PROG = tests -SOURCES=main.cpp \ - test_raw_ip.cpp \ - test_admin_conf.cpp \ - test_tariff.cpp \ - ../projects/stargazer/tariff.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 \ + ../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)