git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add missing password field in chg_admin method description
[stg.git]
/
projects
/
sgauthstress
/
Makefile
diff --git
a/projects/sgauthstress/Makefile
b/projects/sgauthstress/Makefile
index 1a007ec4a05321a787e3706c9e7aabfc5064426c..0dd514fe22409c723fd855e1658dc4d14fe8e243 100644
(file)
--- a/
projects/sgauthstress/Makefile
+++ b/
projects/sgauthstress/Makefile
@@
-2,14
+2,15
@@
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 \
STGLIBS = -lstgcrypto \
-lstgcommon \
- -ldotconfpp \
- -lstgia
+ -ldotconfpp
LIBS += $(LIB_THREAD)
LIBS += $(LIB_THREAD)
@@
-38,17
+39,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)
libs
+ $(C
XX) $(OBJS) $(LDFLAGS) $(LIBS) $(STGLIBS) -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
@@
-64,8
+61,7
@@
endif
deps: $(SRCS) ../../Makefile.conf
$(MAKE) -C $(DIR_LIBSRC) includes
@>deps ;\
deps: $(SRCS) ../../Makefile.conf
$(MAKE) -C $(DIR_LIBSRC) includes
@>deps ;\
- ./make_css.sh
for file in $(SRCS); do\
for file in $(SRCS); do\
- echo "`$(CC) $(CXXFLAGS) $(SEARCH_DIRS) -MM $$file` Makefile" >> deps ;\
+ echo "`$(CC) $(CXXFLAGS) $(SEARCH_DIRS) -MM $$file` Makefile
../../Makefile.conf
" >> deps ;\
echo -e '\t$$(CC) -c $$< $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS)' >> deps ;\
done
echo -e '\t$$(CC) -c $$< $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS)' >> deps ;\
done