]> git.stg.codes - stg.git/blobdiff - projects/sgauthstress/Makefile
Merge branch 'master' into full-month-stats
[stg.git] / projects / sgauthstress / Makefile
index 9d5e94cde1618a8f87136b732b2b9c991b5500ab..f688cffaf07fd17f74950ceffed6ea0da6abab7d 100644 (file)
@@ -8,21 +8,22 @@ SRCS = main.cpp \
        user.cpp \
        proto.cpp
 
-STGLIBS = crypto \
-          common \
-          dotconfpp \
-         locker
+STGLIBS = dotconfpp \
+         locker \
+         crypto \
+         common
 
 STGLIBS_INCS = $(addprefix -I ../../stglibs/,$(addsuffix .lib/include,$(STGLIBS)))
 STGLIBS_LIBS = $(addprefix -L ../../stglibs/,$(addsuffix .lib,$(STGLIBS)))
 
-LIBS += $(LIB_THREAD) $(addprefix -lstg,$(STGLIBS))
+LIBS += $(addprefix -lstg,$(STGLIBS)) $(LIB_THREAD)
 
 ifeq ($(OS),linux)
 LIBS += -ldl
 else
 LIBS += -lintl \
-        -lc
+        -lc \
+       -liconv
 endif
 
 SEARCH_DIRS = -I ../../include
@@ -66,5 +67,5 @@ deps: $(SRCS) ../../Makefile.conf
        @>deps ;\
        for file in $(SRCS); do\
          echo "`$(CC) $(CXXFLAGS) -MM $$file` Makefile ../../Makefile.conf" >> deps ;\
-         echo -e '\t$$(CC) -c $$< $(CXXFLAGS)' >> deps ;\
+         printf '%b\n' '\t$$(CC) -c $$< $(CXXFLAGS)' >> deps ;\
        done