]> git.stg.codes - stg.git/blob - projects/rscriptd/Makefile
Remove 'stg' prefixes from headers and add it to libraries
[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 =  -lstglogger \
14            -lstgcommon \
15            -lstgcrypto \
16            -lstgscriptexecuter \
17            -lstgconffiles
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         install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/sbin/$(PROG)
60         $(MAKE) -C $(DIR_LIBSRC) install
61
62 install-data:
63         # Install etc
64         mkdir -m $(DIR_MODE) -p $(PREFIX)/etc/stargazer
65         install -m $(DATA_MODE) -o $(OWNER) ./rscriptd.conf $(PREFIX)/etc/stargazer/rscriptd.conf
66
67 uninstall: uninstall-bin uninstall-data
68
69 uninstall-bin:
70         rm -f $(PREFIX)/usr/sbin/$(PROG)
71
72 uninstall-data:
73         # Uninstall etc
74         rm -f $(PREFIX)/etc/stragazer/rscriptd.conf
75
76
77 ifneq ($(MAKECMDGOALS),distclean)
78 ifneq ($(MAKECMDGOALS),clean)
79 ifneq ($(MAKECMDGOALS),uninstall)
80 -include deps
81 endif
82 endif
83 endif
84
85 deps:   $(SRCS) ../../Makefile.conf
86         $(MAKE) -C $(DIR_LIBSRC) includes
87         @>deps ;\
88         for file in $(SRCS); do\
89           echo "`$(CC) $(CXXFLAGS) $(SEARCH_DIRS) -MM $$file` Makefile" >> deps ;\
90           echo -e '\t$$(CC) -c $$< $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS)' >> deps ;\
91         done
92
93