]> git.stg.codes - stg.git/blob - projects/rlm_stg/Makefile
Changes in rlm_stg for better integration with FreeRADIUS.
[stg.git] / projects / rlm_stg / Makefile
1 ###############################################################################
2 # $Id: Makefile,v 1.5 2009/03/03 15:49:34 faust Exp $
3 ###############################################################################
4
5 include ../../Makefile.conf
6
7 LIB_NAME = rlm_stg
8
9 PROG = $(LIB_NAME).so
10
11 SRCS = ./rlm_stg.c \
12        ./iface.cpp \
13        ./stg_client.cpp
14
15 STGLIBS = crypto \
16           common
17           
18 STGLIBS_INCS = $(addprefix -I ../../stglibs/,$(addsuffix .lib/include,$(STGLIBS)))
19 STGLIBS_LIBS = $(addprefix -L ../../stglibs/,$(addsuffix .lib,$(STGLIBS)))
20
21 LIBS += $(addprefix -lstg,$(STGLIBS)) $(LIB_THREAD)
22
23 ifeq ($(OS),linux)
24 LIBS += -ldl
25 else
26 LIBS += -lintl \
27         -lc \
28         -liconv
29 endif
30
31 SEARCH_DIRS = -I ../../include
32
33 OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
34
35 CXXFLAGS += -fPIC $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
36 CFLAGS += $(DEFS) $(STGLIBS_INCS) $(SEARCH_DIRS)
37 LDFLAGS += -shared -Wl,-rpath,$(PREFIX)/usr/lib/stg -Wl,-E $(STGLIBS_LIBS)
38
39 .PHONY: all clean distclean libs install uninstall install-bin uninstall-bin
40 all: libs $(PROG) ../../Makefile.conf
41
42 libs:
43         $(MAKE) -C $(DIR_LIBSRC)
44
45 $(PROG): $(OBJS)
46         $(CXX) $^ $(LDFLAGS) -o $(PROG) $(LIBS)
47
48 clean:
49         rm -f deps $(PROG) *.o tags *.*~ .OS
50         rm -f .OS
51         rm -f core*
52         $(MAKE) -C $(DIR_LIBSRC) clean
53
54 distclean: clean
55         rm -f ../../Makefile.conf
56
57 install: install-bin
58
59 install-bin:
60         install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/lib/$(PROG)
61         $(MAKE) -C $(DIR_LIBSRC) install
62
63 uninstall: uninstall-bin
64
65 uninstall-bin:
66         rm -f $(PREFIX)/usr/lib/$(PROG)
67
68 ifneq ($(MAKECMDGOALS),distclean)
69 ifneq ($(MAKECMDGOALS),clean)
70 ifneq ($(MAKECMDGOALS),uninstall)
71 -include deps
72 endif
73 endif
74 endif
75
76 deps:   $(SRCS) ../../Makefile.conf
77         $(MAKE) -C $(DIR_LIBSRC)
78         @>deps ;\
79         for file in $(SRCS); do\
80           echo "$$file" | grep ".c$$" > /dev/null;\
81           if [ $$? -eq 0 ];\
82           then\
83             echo "`$(CC) $(CFLAGS) -MM $$file` Makefile" >> deps ;\
84             printf '%b\n' '\t$$(CC) $(CFLAGS) -c $$<' >> deps ;\
85           else\
86             echo "`$(CXX) $(CXXFLAGS) -MM $$file` Makefile" >> deps ;\
87             printf '%b\n' '\t$$(CXX) $(CXXFLAGS) -c $$<' >> deps ;\
88           fi;\
89         done