]> git.stg.codes - stg.git/blobdiff - projects/sgauthstress/Makefile
Authorization protocol stress test utility
[stg.git] / projects / sgauthstress / Makefile
diff --git a/projects/sgauthstress/Makefile b/projects/sgauthstress/Makefile
new file mode 100644 (file)
index 0000000..1a007ec
--- /dev/null
@@ -0,0 +1,71 @@
+include ../../Makefile.conf
+
+PROG = sgauthstress
+
+SRCS = ./main.cpp \
+       ./settings_impl.cpp \
+       ./store_loader.cpp
+
+STGLIBS =  -lstgcrypto \
+           -lstgcommon \
+           -ldotconfpp \
+           -lstgia
+
+LIBS += $(LIB_THREAD)
+
+ifeq ($(OS),linux)
+LIBS += -ldl
+else
+LIBS += -lintl \
+        -lc
+endif
+
+SEARCH_DIRS = -I $(DIR_INCLUDE)
+
+OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
+
+CXXFLAGS += -Wall
+LDFLAGS += -Wl,-E -L$(DIR_LIB) -Wl,-rpath,$(PREFIX)/usr/lib/stg -Wl,-rpath-link,$(DIR_LIB)
+
+vpath %.so $(DIR_LIB)
+
+.PHONY: all clean distclean libs plugins
+all: libs plugins $(PROG) ../../Makefile.conf
+
+libs:
+       $(MAKE) -C $(DIR_LIBSRC)
+
+plugins: libs 
+       $(MAKE) -C $(DIR_PLUGINS)
+
+$(PROG): $(OBJS) $(STGLIBS) 
+       $(CC) $^ $(LDFLAGS) -o $(PROG) $(LIBS)
+
+clean:
+       rm -f deps $(PROG) *.o tags *.*~ .OS
+       rm -f .OS
+       rm -f .store
+       rm -f .db.sql
+       rm -f core*
+       rm -f css.h
+       $(MAKE) -C $(DIR_LIBSRC) clean
+
+distclean: clean
+       rm -f ../../Makefile.conf
+
+ifneq ($(MAKECMDGOALS),distclean)
+ifneq ($(MAKECMDGOALS),clean)
+ifneq ($(MAKECMDGOALS),uninstall)
+-include deps
+endif
+endif
+endif
+
+deps:  $(SRCS) ../../Makefile.conf
+       $(MAKE) -C $(DIR_LIBSRC) includes
+       @>deps ;\
+       ./make_css.sh
+       for file in $(SRCS); do\
+         echo "`$(CC) $(CXXFLAGS) $(SEARCH_DIRS) -MM $$file` Makefile" >> deps ;\
+         echo -e '\t$$(CC) -c $$< $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS)' >> deps ;\
+       done