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