X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/9dbaa1f22054ff5492e793259d5641b876b57ac1..af1b39c8dba29d0601b540b1892bb22bbe00de0d:/projects/sgconf/Makefile?ds=sidebyside diff --git a/projects/sgconf/Makefile b/projects/sgconf/Makefile index 6dbf2117..ed472f9c 100644 --- a/projects/sgconf/Makefile +++ b/projects/sgconf/Makefile @@ -11,13 +11,13 @@ SRCS = ./main.cpp \ STGLIBS = conffiles \ srvconf \ - common \ - crypto + crypto \ + common STGLIBS_INCS = $(addprefix -I ../../stglibs/,$(addsuffix .lib/include,$(STGLIBS))) STGLIBS_LIBS = $(addprefix -L ../../stglibs/,$(addsuffix .lib,$(STGLIBS))) -LIBS += -lexpat $(LIB_THREAD) $(addprefix -lstg,$(STGLIBS)) +LIBS += $(addprefix -lstg,$(STGLIBS)) -lexpat $(LIB_THREAD) ifeq ($(OS),linux) else @@ -88,7 +88,5 @@ deps: $(SRCS) ../../Makefile.conf @>deps ;\ for file in $(SRCS); do\ echo "`$(CC) $(CXXFLAGS) -MM $$file` Makefile" >> deps ;\ - echo -e '\t$$(CC) -c $$< $(CXXFLAGS)' >> deps ;\ + printf '\t$$(CC) -c $$< $(CXXFLAGS)\n' >> deps ;\ done - -