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