]> git.stg.codes - stg.git/blob - projects/rscriptd/Makefile
Добавление исходников
[stg.git] / projects / rscriptd / Makefile
1 ###############################################################################
2 # $Id: Makefile,v 1.18 2010/02/11 12:22:01 faust Exp $
3 ###############################################################################
4
5 include ../../Makefile.conf
6
7 PROG = rscriptd
8
9 SRCS = ./main.cpp \
10        ./listener.cpp \
11        ./pidfile.cpp
12
13 STGLIBS =  -lstg_logger \
14            -lstg_common \
15            -lstg_crypto \
16            -lscript_executer \
17            -lconffiles
18
19 LIBS += $(LIB_THREAD)
20
21 #ifeq ($(OS),linux)
22 #LIBS += -ldl
23 #else
24 #LIBS += -lc
25 #endif
26
27 SEARCH_DIRS = -I $(DIR_INCLUDE)
28
29 OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
30
31 CXXFLAGS += -Wall
32 LDFLAGS += -Wl,-E -L$(DIR_LIB) -Wl,-rpath,$(PREFIX)/usr/lib/stg -Wl,-rpath-link,$(DIR_LIB)
33
34 vpath %.so $(DIR_LIB)
35
36 .PHONY: all clean distclean libs install uninstall
37 all: libs $(PROG) ../../Makefile.conf
38
39 libs:
40         $(MAKE) -C $(DIR_LIBSRC)
41
42 $(PROG): $(OBJS) $(STGLIBS) 
43         $(CC) $^ $(LDFLAGS) $(LIBS) -o $(PROG)
44
45 clean:
46         rm -f deps $(PROG) *.o tags *.*~ .OS
47         rm -f .OS
48         rm -f .store
49         rm -f .db.sql
50         rm -f core*
51         $(MAKE) -C $(DIR_LIBSRC) clean
52
53 distclean: clean
54         rm -f ../../Makefile.conf
55
56 install: install-bin install-data
57
58 install-bin:
59         mkdir -m $(BIN_MODE) -p $(PREFIX)/usr/sbin
60         install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/sbin/$(PROG)
61         $(MAKE) -C $(DIR_LIBSRC) install
62
63 install-data:
64         # Install etc
65         mkdir -m $(DATA_MODE) -p $(PREFIX)/etc/stargazer
66         install -m $(DATA_MODE) -o $(OWNER) ./rscriptd.conf $(PREFIX)/etc/stargazer/rscriptd.conf
67
68 uninstall: uninstall-bin uninstall-data
69
70 uninstall-bin:
71         rm -f $(PREFIX)/usr/sbin/$(PROG)
72
73 uninstall-data:
74         # Uninstall etc
75         rm -f $(PREFIX)/etc/stragazer/rscriptd.conf
76
77
78 ifneq ($(MAKECMDGOALS),distclean)
79 ifneq ($(MAKECMDGOALS),clean)
80 ifneq ($(MAKECMDGOALS),uninstall)
81 -include deps
82 endif
83 endif
84 endif
85
86 deps:   $(SRCS) ../../Makefile.conf
87         $(MAKE) -C $(DIR_LIBSRC) includes
88         @>deps ;\
89         for file in $(SRCS); do\
90           echo "`$(CC) $(CXXFLAGS) $(SEARCH_DIRS) -MM $$file` Makefile" >> deps ;\
91           echo -e '\t$$(CC) -c $$< $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS)' >> deps ;\
92         done
93
94