git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed build.
[stg.git]
/
projects
/
sgauthstress
/
Makefile
diff --git
a/projects/sgauthstress/Makefile
b/projects/sgauthstress/Makefile
index 1a007ec4a05321a787e3706c9e7aabfc5064426c..4474e77fd13c9aa2f9903144d3de30e55636b735 100644
(file)
--- a/
projects/sgauthstress/Makefile
+++ b/
projects/sgauthstress/Makefile
@@
-2,32
+2,37
@@
include ../../Makefile.conf
PROG = sgauthstress
PROG = sgauthstress
-SRCS = ./main.cpp \
- ./settings_impl.cpp \
- ./store_loader.cpp
+SRCS = main.cpp \
+ settings.cpp \
+ store_loader.cpp \
+ user.cpp \
+ proto.cpp
-STGLIBS =
-lstgcrypto
\
-
-lstgcommon
\
-
-ldotconfpp
\
- -lstgia
+STGLIBS =
dotconfpp
\
+
locker
\
+
crypto
\
+ common
-LIBS += $(LIB_THREAD)
+STGLIBS_INCS = $(addprefix -I ../../stglibs/,$(addsuffix .lib/include,$(STGLIBS)))
+STGLIBS_LIBS = $(addprefix -L ../../stglibs/,$(addsuffix .lib,$(STGLIBS)))
+
+LIBS += $(addprefix -lstg,$(STGLIBS)) $(LIB_THREAD)
ifeq ($(OS),linux)
LIBS += -ldl
else
LIBS += -lintl \
ifeq ($(OS),linux)
LIBS += -ldl
else
LIBS += -lintl \
- -lc
+ -lc \
+ -liconv
endif
endif
-SEARCH_DIRS = -I
$(DIR_INCLUDE)
+SEARCH_DIRS = -I
../../include
OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
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)
+CXXFLAGS += $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
+CFLAGS += $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
+LDFLAGS += -Wl,-E $(STGLIBS_LIBS)
.PHONY: all clean distclean libs plugins
all: libs plugins $(PROG) ../../Makefile.conf
.PHONY: all clean distclean libs plugins
all: libs plugins $(PROG) ../../Makefile.conf
@@
-38,17
+43,13
@@
libs:
plugins: libs
$(MAKE) -C $(DIR_PLUGINS)
plugins: libs
$(MAKE) -C $(DIR_PLUGINS)
-$(PROG): $(OBJS)
$(STGLIBS)
- $(C
C) $^ $(LDFLAGS) -o $(PROG) $(LIBS
)
+$(PROG): $(OBJS)
+ $(C
XX) $^ $(LDFLAGS) $(LIBS) -o $(PROG
)
clean:
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
+ rm -f deps $(PROG) *.o *.*~
$(MAKE) -C $(DIR_LIBSRC) clean
$(MAKE) -C $(DIR_LIBSRC) clean
+ $(MAKE) -C $(DIR_PLUGINS) clean
distclean: clean
rm -f ../../Makefile.conf
distclean: clean
rm -f ../../Makefile.conf
@@
-62,10
+63,16
@@
endif
endif
deps: $(SRCS) ../../Makefile.conf
endif
deps: $(SRCS) ../../Makefile.conf
- $(MAKE) -C $(DIR_LIBSRC)
includes
+ $(MAKE) -C $(DIR_LIBSRC)
@>deps ;\
@>deps ;\
- ./make_css.sh
for file in $(SRCS); do\
for file in $(SRCS); do\
- echo "`$(CC) $(CXXFLAGS) $(SEARCH_DIRS) -MM $$file` Makefile" >> deps ;\
- echo -e '\t$$(CC) -c $$< $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS)' >> deps ;\
+ echo "$$file" | grep ".c$$" > /dev/null;\
+ if [ $$? -eq 0 ];\
+ then\
+ echo "`$(CC) $(CFLAGS) -MM $$file` Makefile" >> deps ;\
+ printf '%b\n' '\t$$(CC) $(CFLAGS) -c $$<' >> deps ;\
+ else\
+ echo "`$(CXX) $(CXXFLAGS) -MM $$file` Makefile" >> deps ;\
+ printf '%b\n' '\t$$(CXX) $(CXXFLAGS) -c $$<' >> deps ;\
+ fi;\
done
done