build: overhaul wrapper script system for multiple wrapper support
[musl] / Makefile
1 #
2 # Makefile for musl (requires GNU make)
3 #
4 # This is how simple every makefile should be...
5 # No, I take that back - actually most should be less than half this size.
6 #
7 # Use config.mak to override any of the following variables.
8 # Do not make changes here.
9 #
10
11 exec_prefix = /usr/local
12 bindir = $(exec_prefix)/bin
13
14 prefix = /usr/local/musl
15 includedir = $(prefix)/include
16 libdir = $(prefix)/lib
17 syslibdir = /lib
18
19 SRCS = $(sort $(wildcard src/*/*.c arch/$(ARCH)/src/*.c))
20 OBJS = $(SRCS:.c=.o)
21 LOBJS = $(OBJS:.o=.lo)
22 GENH = include/bits/alltypes.h
23 GENH_INT = src/internal/version.h
24 IMPH = src/internal/stdio_impl.h src/internal/pthread_impl.h src/internal/libc.h
25
26 LDFLAGS = 
27 LIBCC = -lgcc
28 CPPFLAGS =
29 CFLAGS = -Os -pipe
30 CFLAGS_C99FSE = -std=c99 -ffreestanding -nostdinc 
31
32 CFLAGS_ALL = $(CFLAGS_C99FSE)
33 CFLAGS_ALL += -D_XOPEN_SOURCE=700 -I./arch/$(ARCH) -I./src/internal -I./include
34 CFLAGS_ALL += $(CPPFLAGS) $(CFLAGS)
35 CFLAGS_ALL_STATIC = $(CFLAGS_ALL)
36 CFLAGS_ALL_SHARED = $(CFLAGS_ALL) -fPIC -DSHARED
37
38 AR      = $(CROSS_COMPILE)ar
39 RANLIB  = $(CROSS_COMPILE)ranlib
40 INSTALL = ./tools/install.sh
41
42 ARCH_INCLUDES = $(wildcard arch/$(ARCH)/bits/*.h)
43 ALL_INCLUDES = $(sort $(wildcard include/*.h include/*/*.h) $(GENH) $(ARCH_INCLUDES:arch/$(ARCH)/%=include/%))
44
45 EMPTY_LIB_NAMES = m rt pthread crypt util xnet resolv dl
46 EMPTY_LIBS = $(EMPTY_LIB_NAMES:%=lib/lib%.a)
47 CRT_LIBS = lib/crt1.o lib/Scrt1.o lib/rcrt1.o lib/crti.o lib/crtn.o
48 STATIC_LIBS = lib/libc.a
49 SHARED_LIBS = lib/libc.so
50 TOOL_LIBS = lib/musl-gcc.specs
51 ALL_LIBS = $(CRT_LIBS) $(STATIC_LIBS) $(SHARED_LIBS) $(EMPTY_LIBS) $(TOOL_LIBS)
52 ALL_TOOLS = tools/musl-gcc
53
54 WRAPCC_GCC = gcc
55
56 LDSO_PATHNAME = $(syslibdir)/ld-musl-$(ARCH)$(SUBARCH).so.1
57
58 -include config.mak
59
60 all: $(ALL_LIBS) $(ALL_TOOLS)
61
62 install: install-libs install-headers install-tools
63
64 clean:
65         rm -f crt/*.o
66         rm -f $(OBJS)
67         rm -f $(LOBJS)
68         rm -f $(ALL_LIBS) lib/*.[ao] lib/*.so
69         rm -f $(ALL_TOOLS)
70         rm -f $(GENH) $(GENH_INT)
71         rm -f include/bits
72
73 distclean: clean
74         rm -f config.mak
75
76 include/bits:
77         @test "$(ARCH)" || { echo "Please set ARCH in config.mak before running make." ; exit 1 ; }
78         ln -sf ../arch/$(ARCH)/bits $@
79
80 include/bits/alltypes.h.in: include/bits
81
82 include/bits/alltypes.h: include/bits/alltypes.h.in include/alltypes.h.in tools/mkalltypes.sed
83         sed -f tools/mkalltypes.sed include/bits/alltypes.h.in include/alltypes.h.in > $@
84
85 src/internal/version.h: $(wildcard VERSION .git)
86         printf '#define VERSION "%s"\n' "$$(sh tools/version.sh)" > $@
87
88 src/internal/version.lo: src/internal/version.h
89
90 crt/rcrt1.o src/ldso/dlstart.lo src/ldso/dynlink.lo: src/internal/dynlink.h arch/$(ARCH)/reloc.h
91
92 crt/crt1.o crt/Scrt1.o crt/rcrt1.o src/ldso/dlstart.lo: $(wildcard arch/$(ARCH)/crt_arch.h)
93
94 crt/rcrt1.o: src/ldso/dlstart.c
95
96 crt/Scrt1.o crt/rcrt1.o: CFLAGS += -fPIC
97
98 OPTIMIZE_SRCS = $(wildcard $(OPTIMIZE_GLOBS:%=src/%))
99 $(OPTIMIZE_SRCS:%.c=%.o) $(OPTIMIZE_SRCS:%.c=%.lo): CFLAGS += -O3
100
101 MEMOPS_SRCS = src/string/memcpy.c src/string/memmove.c src/string/memcmp.c src/string/memset.c
102 $(MEMOPS_SRCS:%.c=%.o) $(MEMOPS_SRCS:%.c=%.lo): CFLAGS += $(CFLAGS_MEMOPS)
103
104 NOSSP_SRCS = $(wildcard crt/*.c) \
105         src/env/__libc_start_main.c src/env/__init_tls.c \
106         src/thread/__set_thread_area.c src/env/__stack_chk_fail.c \
107         src/string/memset.c src/string/memcpy.c \
108         src/ldso/dlstart.c src/ldso/dynlink.c
109 $(NOSSP_SRCS:%.c=%.o) $(NOSSP_SRCS:%.c=%.lo): CFLAGS += $(CFLAGS_NOSSP)
110
111 $(CRT_LIBS:lib/%=crt/%): CFLAGS += -DCRT
112
113 # This incantation ensures that changes to any subarch asm files will
114 # force the corresponding object file to be rebuilt, even if the implicit
115 # rule below goes indirectly through a .sub file.
116 define mkasmdep
117 $(dir $(patsubst %/,%,$(dir $(1))))$(notdir $(1:.s=.o)): $(1)
118 endef
119 $(foreach s,$(wildcard src/*/$(ARCH)*/*.s),$(eval $(call mkasmdep,$(s))))
120
121 %.o: $(ARCH)$(ASMSUBARCH)/%.sub
122         $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $(dir $<)$(shell cat $<)
123
124 %.o: $(ARCH)/%.s
125         $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $<
126
127 %.o: %.c $(GENH) $(IMPH)
128         $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $<
129
130 %.lo: $(ARCH)$(ASMSUBARCH)/%.sub
131         $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $(dir $<)$(shell cat $<)
132
133 %.lo: $(ARCH)/%.s
134         $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $<
135
136 %.lo: %.c $(GENH) $(IMPH)
137         $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $<
138
139 lib/libc.so: $(LOBJS)
140         $(CC) $(CFLAGS_ALL_SHARED) $(LDFLAGS) -nostdlib -shared \
141         -Wl,-e,_dlstart -Wl,-Bsymbolic-functions \
142         -o $@ $(LOBJS) $(LIBCC)
143
144 lib/libc.a: $(OBJS)
145         rm -f $@
146         $(AR) rc $@ $(OBJS)
147         $(RANLIB) $@
148
149 $(EMPTY_LIBS):
150         rm -f $@
151         $(AR) rc $@
152
153 lib/%.o: crt/%.o
154         cp $< $@
155
156 lib/musl-gcc.specs: tools/musl-gcc.specs.sh config.mak
157         sh $< "$(includedir)" "$(libdir)" "$(LDSO_PATHNAME)" > $@
158
159 tools/musl-gcc: config.mak
160         printf '#!/bin/sh\nexec "$${REALGCC:-$(WRAPCC_GCC)}" "$$@" -specs "%s/musl-gcc.specs"\n' "$(libdir)" > $@
161         chmod +x $@
162
163 $(DESTDIR)$(bindir)/%: tools/%
164         $(INSTALL) -D $< $@
165
166 $(DESTDIR)$(libdir)/%.so: lib/%.so
167         $(INSTALL) -D -m 755 $< $@
168
169 $(DESTDIR)$(libdir)/%: lib/%
170         $(INSTALL) -D -m 644 $< $@
171
172 $(DESTDIR)$(includedir)/bits/%: arch/$(ARCH)/bits/%
173         $(INSTALL) -D -m 644 $< $@
174
175 $(DESTDIR)$(includedir)/%: include/%
176         $(INSTALL) -D -m 644 $< $@
177
178 $(DESTDIR)$(LDSO_PATHNAME): $(DESTDIR)$(libdir)/libc.so
179         $(INSTALL) -D -l $(libdir)/libc.so $@ || true
180
181 install-libs: $(ALL_LIBS:lib/%=$(DESTDIR)$(libdir)/%) $(if $(SHARED_LIBS),$(DESTDIR)$(LDSO_PATHNAME),)
182
183 install-headers: $(ALL_INCLUDES:include/%=$(DESTDIR)$(includedir)/%)
184
185 install-tools: $(ALL_TOOLS:tools/%=$(DESTDIR)$(bindir)/%)
186
187 musl-git-%.tar.gz: .git
188          git archive --format=tar.gz --prefix=$(patsubst %.tar.gz,%,$@)/ -o $@ $(patsubst musl-git-%.tar.gz,%,$@)
189
190 musl-%.tar.gz: .git
191          git archive --format=tar.gz --prefix=$(patsubst %.tar.gz,%,$@)/ -o $@ v$(patsubst musl-%.tar.gz,%,$@)
192
193 .PRECIOUS: $(CRT_LIBS:lib/%=crt/%)
194
195 .PHONY: all clean install install-libs install-headers install-tools