]> git.stg.codes - stg.git/blob - projects/sgconf/Makefile
Removed unused files.
[stg.git] / projects / sgconf / Makefile
1 ###############################################################################
2 # $Id: Makefile,v 1.21 2010/02/11 12:34:14 faust Exp $
3 ###############################################################################
4
5 include ../../Makefile.conf
6
7 PROG = sgconf
8
9 SRCS = ./main.cpp \
10        ./options.cpp \
11        ./actions.cpp \
12        ./admins.cpp \
13        ./tariffs.cpp \
14        ./users.cpp \
15        ./xml.cpp
16
17 STGLIBS = srvconf \
18           crypto \
19           common
20
21 STGLIBS_INCS = $(addprefix -I ../../stglibs/,$(addsuffix .lib/include,$(STGLIBS)))
22 STGLIBS_LIBS = $(addprefix -L ../../stglibs/,$(addsuffix .lib,$(STGLIBS)))
23
24 LIBS += $(addprefix -lstg,$(STGLIBS)) -lexpat $(LIB_THREAD)
25
26 ifeq ($(OS),linux)
27 else
28 LIBS += -lc \
29         -liconv
30 endif
31
32 SEARCH_DIRS = -I ../../include
33
34 ifeq ($(OS),bsd)
35 SEARCH_DIRS += -I/usr/local/include
36 CXXFLAGS += -DHAVE_DECL_GETOPT=1
37 endif
38
39 ifeq ($(OS),bsd5)
40 SEARCH_DIRS += -I/usr/local/include
41 CXXFLAGS += -DHAVE_DECL_GETOPT=1
42 endif
43
44 OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
45
46 CXXFLAGS += $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
47 CFLAGS += $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
48 LDFLAGS += $(STGLIBS_LIBS)
49
50 ifneq ($(OS),darwin)
51 LDFLAGS += -Wl,-E
52 endif
53
54 .PHONY: all clean distclean libs install uninstall install-bin install-data uninstall-bin uninstall-data
55 all: libs $(PROG) ../../Makefile.conf
56
57 libs:
58         $(MAKE) -C $(DIR_LIBSRC)
59
60 $(PROG): $(OBJS)
61         $(CXX) $^ $(LDFLAGS) $(LIBS) -o $(PROG)
62
63 clean:
64         rm -f deps $(PROG) *.o tags *.*~ .OS
65         rm -f .OS
66         rm -f .store
67         rm -f .db.sql
68         rm -f core*
69         $(MAKE) -C $(DIR_LIBSRC) clean
70
71 distclean: clean
72         rm -f ../../Makefile.conf
73
74 install: install-bin
75
76 install-bin:
77 ifeq ($(DEBUG), yes)
78         install -D -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/bin/$(PROG)
79 else
80         install -D -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/bin/$(PROG)
81 endif
82         $(MAKE) -C $(DIR_LIBSRC) install
83
84 uninstall: uninstall-bin
85
86 uninstall-bin:
87         rm -f $(PREFIX)/usr/sbin/$(PROG)
88
89
90 ifneq ($(MAKECMDGOALS),distclean)
91 ifneq ($(MAKECMDGOALS),clean)
92 ifneq ($(MAKECMDGOALS),uninstall)
93 -include deps
94 endif
95 endif
96 endif
97
98 deps: $(SRCS) ../../Makefile.conf
99         $(MAKE) -C $(DIR_LIBSRC)
100         @>deps ;\
101         for file in $(SRCS); do\
102           echo "$$file" | grep ".c$$" > /dev/null;\
103           if [ $$? -eq 0 ];\
104           then\
105             echo "`$(CC) $(CFLAGS) -MM $$file` Makefile" >> deps ;\
106             printf '%b\n' '\t$$(CC) $(CFLAGS) -c $$<' >> deps ;\
107           else\
108             echo "`$(CXX) $(CXXFLAGS) -MM $$file` Makefile" >> deps ;\
109             printf '%b\n' '\t$$(CXX) $(CXXFLAGS) -c $$<' >> deps ;\
110           fi;\
111         done