]> git.stg.codes - stg.git/blob - projects/sgconf_xml/Makefile
Fixed installation on BSD-systems.
[stg.git] / projects / sgconf_xml / Makefile
1 ###############################################################################
2 # $Id: Makefile,v 1.3 2008/05/11 09:30:43 nobunaga Exp $
3 ###############################################################################
4
5 include ../../Makefile.conf
6
7 PROG = sgconf_xml
8
9 SRCS = ./main.cpp \
10        ./parser.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 D_FLAG = -D
27 else
28 D_FLAG = -d
29 endif
30
31 SEARCH_DIRS = -I ../../include
32
33 ifeq ($(OS),bsd)
34 SEARCH_DIRS += -I/usr/local/include
35 CXXFLAGS += -DHAVE_DECL_GETOPT=1
36 endif
37
38 ifeq ($(OS),bsd5)
39 SEARCH_DIRS += -I/usr/local/include
40 CXXFLAGS += -DHAVE_DECL_GETOPT=1
41 endif
42
43 OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
44
45 CXXFLAGS += $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
46 CFLAGS += $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
47 LDFLAGS += -Wl,-E $(STGLIBS_LIBS)
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) $^ $(LIBS) $(LDFLAGS) -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 install-data
70
71 install-bin:
72 ifeq ($(DEBUG), yes)
73         install $(D_FLAG) -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/bin/$(PROG)
74 else
75         install $(D_FLAG) -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/bin/$(PROG)
76 endif
77         $(MAKE) -C $(DIR_LIBSRC) install
78
79 uninstall: uninstall-bin uninstall-data
80
81 uninstall-bin:
82         rm -f $(PREFIX)/usr/sbin/$(PROG)
83
84
85 ifneq ($(MAKECMDGOALS),distclean)
86 ifneq ($(MAKECMDGOALS),clean)
87 ifneq ($(MAKECMDGOALS),uninstall)
88 -include deps
89 endif
90 endif
91 endif
92
93 deps:   $(SRCS) ../../Makefile.conf
94         $(MAKE) -C $(DIR_LIBSRC)
95         @>deps ;\
96         for file in $(SRCS); do\
97           echo "$$file" | grep ".c$$" > /dev/null;\
98           if [ $$? -eq 0 ];\
99           then\
100             echo "`$(CC) $(CFLAGS) -MM $$file` Makefile" >> deps ;\
101             printf '%b\n' '\t$$(CC) $(CFLAGS) -c $$<' >> deps ;\
102           else\
103             echo "`$(CXX) $(CXXFLAGS) -MM $$file` Makefile" >> deps ;\
104             printf '%b\n' '\t$$(CXX) $(CXXFLAGS) -c $$<' >> deps ;\
105           fi;\
106         done