]> git.stg.codes - stg.git/blob - stglibs/Makefile.in
b5d1195c422ee9918c5a24eaa57244d5ca936d83
[stg.git] / stglibs / Makefile.in
1 ###############################################################################
2 # $Id: Makefile.in,v 1.28 2009/03/03 15:50:14 faust Exp $
3 ###############################################################################
4
5 include ../../Makefile.conf
6
7 PROG = lib$(LIB_NAME).a
8
9 SEARCH_DIRS = -I ../../include -I . -I ./include
10
11 ifeq ($(STG_TIME), yes)
12 DEFS += -DSTG_TIME
13 endif
14
15 ifneq ($(LIB_DEFS),)
16 DEFS += $(LIB_DEFS)
17 endif
18
19 ifneq ($(LIB_INCS),)
20 SEARCH_DIRS += $(LIB_INCS)
21 endif
22
23 OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
24
25 CXXFLAGS += -fPIC $(SEARCH_DIRS) $(DEFS)
26 CFLAGS += -fPIC $(SEARCH_DIRS) $(DEFS)
27
28 all: $(PROG)
29
30 $(PROG): $(OBJS)
31         ar rc lib$(LIB_NAME).a $(OBJS)
32         ranlib lib$(LIB_NAME).a
33
34 clean:
35         rm -f deps $(PROG) *.o *.a *.so tags *.*~ 
36
37 install: $(PROG)
38 ifeq ($(DEBUG), yes)
39         install -D -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/lib/stg/$(PROG)
40 else
41         install -D -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/lib/stg/$(PROG)
42 endif
43         mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/include/stg
44         install -m $(DATA_MODE) -o $(OWNER) $(addprefix include/stg/,$(INCS)) $(PREFIX)/usr/include/stg/
45
46 uninstall:
47         rm -f $(PREFIX)/usr/lib/stg/$(PROG)
48         for file in $(INCS); do \
49             rm -f $(PREFIX)/usr/include/stg/$$file; \
50         done
51
52 ifneq ($(MAKECMDGOALS),includes)
53 ifneq ($(MAKECMDGOALS),clean)
54 ifneq ($(MAKECMDGOALS),uninstall)
55 -include deps
56 endif
57 endif
58 endif
59
60 deps:   $(SRCS) ../../Makefile.conf
61         @>deps ;\
62         for file in $(SRCS); do\
63           echo "$$file" | grep ".c$$" > /dev/null;\
64           if [ $$? -eq 0 ];\
65           then\
66             echo "`$(CC) $(CFLAGS) -MM $$file` Makefile ../../Makefile.conf" >> deps ;\
67             printf '%b\n' '\t$$(CC) $(CFLAGS) -c $$<' >> deps ;\
68           else\
69             echo "`$(CXX) $(CXXFLAGS) -MM $$file` Makefile ../../Makefile.conf" >> deps ;\
70             printf '%b\n' '\t$$(CXX) $(CXXFLAGS) -c $$<' >> deps ;\
71           fi;\
72         done