git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix libs order (for --as-needed)
[stg.git]
/
projects
/
stargazer
/
Makefile
diff --git
a/projects/stargazer/Makefile
b/projects/stargazer/Makefile
index 9f7dd8692eaceb6443ed0865e888d743861416d4..97c2e8566c3c4a95055bfe526c446cf9c18dc84c 100644
(file)
--- a/
projects/stargazer/Makefile
+++ b/
projects/stargazer/Makefile
@@
-8,42
+8,46
@@
PROG = stargazer
SRCS = ./admin_impl.cpp \
./admins_impl.cpp \
SRCS = ./admin_impl.cpp \
./admins_impl.cpp \
+ ./corps_impl.cpp \
./eventloop.cpp \
./main.cpp \
./pidfile.cpp \
./plugin_runner.cpp \
./settings_impl.cpp \
./eventloop.cpp \
./main.cpp \
./pidfile.cpp \
./plugin_runner.cpp \
./settings_impl.cpp \
+ ./services_impl.cpp \
./stg_timer.cpp \
./store_loader.cpp \
./tariff_impl.cpp \
./tariffs_impl.cpp \
./stg_timer.cpp \
./store_loader.cpp \
./tariff_impl.cpp \
./tariffs_impl.cpp \
- ./traffcounter.cpp \
+ ./traffcounter
_impl
.cpp \
./user_impl.cpp \
./user_property.cpp \
./users_impl.cpp
./user_impl.cpp \
./user_property.cpp \
./users_impl.cpp
-STGLIBS =
-lstg_logg
er \
-
-lstg_locker
\
-
-lstg_common
\
-
-lscript_execut
er \
- -ldotconfpp
+STGLIBS =
scriptexecut
er \
+
dotconfpp
\
+
locker
\
+
logg
er \
+ common
-LIBS += -lexpat
+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)
ifeq ($(OS),linux)
-LIBS += $(LIB_THREAD) \
- -ldl
+LIBS += -ldl
else
else
-LIBS += $(LIB_THREAD) \
- -lc
+LIBS += -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))))
-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 install uninstall install-bin install-data
all: libs plugins $(PROG)
.PHONY: all clean distclean libs plugins install uninstall install-bin install-data
all: libs plugins $(PROG)
@@
-54,8
+58,8
@@
libs:
plugins: libs
$(MAKE) -C $(DIR_PLUGINS)
plugins: libs
$(MAKE) -C $(DIR_PLUGINS)
-$(PROG): $(OBJS)
libs
- $(CXX) $
(OBJS) $(LDFLAGS) $(LIBS) $(STG
LIBS) -o $(PROG)
+$(PROG): $(OBJS)
+ $(CXX) $
^ $(LDFLAGS) $(
LIBS) -o $(PROG)
clean:
rm -f deps $(PROG) *.o tags *.*~ .OS
clean:
rm -f deps $(PROG) *.o tags *.*~ .OS
@@
-72,8
+76,9
@@
distclean: clean
install: install-bin install-data
install: install-bin install-data
-install-bin:
+install-bin:
$(PROG)
install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/sbin/$(PROG)
install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/sbin/$(PROG)
+ $(MAKE) -C $(DIR_INCLUDE) install
$(MAKE) -C $(DIR_LIBSRC) install
$(MAKE) -C $(DIR_PLUGINS) install
$(MAKE) -C $(DIR_LIBSRC) install
$(MAKE) -C $(DIR_PLUGINS) install
@@
-143,9
+148,9
@@
endif
endif
deps: $(SRCS) ../../Makefile.conf
endif
deps: $(SRCS) ../../Makefile.conf
- $(MAKE) -C $(DIR_LIBSRC)
includes
+ $(MAKE) -C $(DIR_LIBSRC)
@>deps ;\
for file in $(SRCS); do\
@>deps ;\
for file in $(SRCS); do\
- echo "`$(CC) $(CXXFLAGS)
$(SEARCH_DIRS)
-MM $$file` Makefile ../../Makefile.conf" >> deps ;\
- echo -e '\t$$(CC) -c $$< $(CXXFLAGS)
$(SEARCH_DIRS) $(DEFS)
' >> deps ;\
+ echo "`$(CC) $(CXXFLAGS) -MM $$file` Makefile ../../Makefile.conf" >> deps ;\
+ echo -e '\t$$(CC) -c $$< $(CXXFLAGS)' >> deps ;\
done
done