From 130cfddff1a69ee69e5edf98e80f0634ce25819a Mon Sep 17 00:00:00 2001
From: Maxim Mamontov <faust.madf@gmail.com>
Date: Fri, 17 Oct 2014 13:06:21 +0300
Subject: [PATCH] Added Makefile for tests for Darwin platform.

---
 tests/Makefile.darwin | 59 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)
 create mode 100644 tests/Makefile.darwin

diff --git a/tests/Makefile.darwin b/tests/Makefile.darwin
new file mode 100644
index 00000000..11bdd523
--- /dev/null
+++ b/tests/Makefile.darwin
@@ -0,0 +1,59 @@
+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 = -DDARWIN \
+       -DUSE_ABSTRACT_SETTINGS
+CFLAGS += -g3 -Wall -W -Wextra $(INCS) $(DEFS)
+CXXFLAGS += $(CFLAGS)
+LIBS = -lpthread -liconv
+PROG = tests
+
+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
+
+.PHONY: all clean
+
+all: $(PROG)
+
+$(PROG): $(addsuffix .o,$(basename $(SOURCES)))
+	$(CXX) $(LDFLAGS) $^ $(LIBS) -o $@
+
+clean:
+	rm -f $(addsuffix .o,$(basename $(SOURCES))) $(addsuffix .d,$(SOURCES)) $(PROG)
+
+ifneq ($(MAKECMDGOALS),distclean)
+ifneq ($(MAKECMDGOALS),clean)
+-include $(addsuffix .d,$(SOURCES))
+endif
+endif
+
+%.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 $@.$$$$
-- 
2.44.2