aboutsummaryrefslogtreecommitdiffstats
path: root/make/gcc-linux.mk
blob: 41978402d4372f73a954eb2dd9844bf237b2af19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# --- Required interface definitions ---

OBJ=o
LOBJ=o

# Usage: $(call libname,base)
define libname
lib$(1).a lib$(1).so
endef

# Usage: $(call binname,base)
define binname
$(1)
endef

# --- Required rule definitions ---

#                       1   2
# Usage: $(call compile,src,includes)
define compile
	$(CXX) $(CPPFLAGS) $(CXXFLAGS) \
		$(call depflags,$(basename $(call src_to_obj,$(1)))) \
		$(foreach I,$(2),-I$(I)) \
		-c $(1) -o $(call src_to_obj,$(1))
endef

#                       1   2
# Usage: $(call c_compile,src,includes)
define c_compile
	$(CC) $(CPPFLAGS) $(CFLAGS) \
		$(call depflags,$(basename $(call src_to_obj,$(1)))) \
		$(foreach I,$(2),-I$(I)) \
		-c $(1) -o $(call c_src_to_obj,$(1))
endef

define libcompile
	$(CXX) $(CPPFLAGS) $(CXXFLAGS) -fpic \
		$(call depflags,$(basename $(call src_to_obj,$(1)))) \
		$(foreach I,$(2),-I$(I)) \
		-c $(1) -o $(call src_to_obj,$(1))
endef


#                       1    2       3       4        5
# Usage: $(call makelib,objs,library,current,revision,age)
define makelib
	$(RM) $2
	if [ "$(findstring .a,$(2))" = ".a" ]; then \
		ar cru $(2) $(1); \
		ranlib $(2); \
	else \
		major=$$(( $(3) - $(5))); \
	  	versuffix=$$major.$5.$4; \
		$(CXX) $(CXXFLAGS) -shared -o $(2).$$versuffix $(1) \
			-Wl,--soname -Wl,`basename $(2)`.$$major \
			$(LDFLAGS) $(LIBS); \
		ln -s `basename $(2)`.$$versuffix $(2); \
		ln -s `basename $(2)`.$$versuffix $(2).$$major; \
	fi
endef

#                       1    2
# Usage: $(call makebin,objs,binary)
define makebin
	$(CXX) $(CXXFLAGS) $(1) -o $(2) $(LDFLAGS) \
		-Llibqpdf/$(OUTPUT_DIR) -lqpdf $(LIBS)
endef