add __isoc99_vfscanf weak alias to vfscanf
[musl.git] / Makefile
blob0ab0bfddb2364b594949eeba8705d9ed0c98b34f
2 # Makefile for musl (requires GNU make)
4 # This is how simple every makefile should be...
5 # No, I take that back - actually most should be less than half this size.
7 # Use config.mak to override any of the following variables.
8 # Do not make changes here.
11 exec_prefix = /usr/local
12 bindir = $(exec_prefix)/bin
14 prefix = /usr/local/musl
15 includedir = $(prefix)/include
16 libdir = $(prefix)/lib
17 syslibdir = /lib
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
26 LDFLAGS =
27 LIBCC = -lgcc
28 CPPFLAGS =
29 CFLAGS = -Os -pipe
30 CFLAGS_C99FSE = -std=c99 -ffreestanding -nostdinc
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
38 AR = $(CROSS_COMPILE)ar
39 RANLIB = $(CROSS_COMPILE)ranlib
40 INSTALL = ./tools/install.sh
42 ARCH_INCLUDES = $(wildcard arch/$(ARCH)/bits/*.h)
43 ALL_INCLUDES = $(sort $(wildcard include/*.h include/*/*.h) $(GENH) $(ARCH_INCLUDES:arch/$(ARCH)/%=include/%))
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/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
54 LDSO_PATHNAME = $(syslibdir)/ld-musl-$(ARCH)$(SUBARCH).so.1
56 -include config.mak
58 all: $(ALL_LIBS) $(ALL_TOOLS)
60 install: install-libs install-headers install-tools
62 clean:
63 rm -f crt/*.o
64 rm -f $(OBJS)
65 rm -f $(LOBJS)
66 rm -f $(ALL_LIBS) lib/*.[ao] lib/*.so
67 rm -f $(ALL_TOOLS)
68 rm -f $(GENH) $(GENH_INT)
69 rm -f include/bits
71 distclean: clean
72 rm -f config.mak
74 include/bits:
75 @test "$(ARCH)" || { echo "Please set ARCH in config.mak before running make." ; exit 1 ; }
76 ln -sf ../arch/$(ARCH)/bits $@
78 include/bits/alltypes.h.in: include/bits
80 include/bits/alltypes.h: include/bits/alltypes.h.in include/alltypes.h.in tools/mkalltypes.sed
81 sed -f tools/mkalltypes.sed include/bits/alltypes.h.in include/alltypes.h.in > $@
83 src/internal/version.h: $(wildcard VERSION .git)
84 printf '#define VERSION "%s"\n' "$$(sh tools/version.sh)" > $@
86 src/internal/version.lo: src/internal/version.h
88 src/ldso/dynlink.lo: arch/$(ARCH)/reloc.h
90 crt/crt1.o crt/Scrt1.o: $(wildcard arch/$(ARCH)/crt_arch.h)
92 crt/Scrt1.o: CFLAGS += -fPIC
94 OPTIMIZE_SRCS = $(wildcard $(OPTIMIZE_GLOBS:%=src/%))
95 $(OPTIMIZE_SRCS:%.c=%.o) $(OPTIMIZE_SRCS:%.c=%.lo): CFLAGS += -O3
97 MEMOPS_SRCS = src/string/memcpy.c src/string/memmove.c src/string/memcmp.c src/string/memset.c
98 $(MEMOPS_SRCS:%.c=%.o) $(MEMOPS_SRCS:%.c=%.lo): CFLAGS += $(CFLAGS_MEMOPS)
100 # This incantation ensures that changes to any subarch asm files will
101 # force the corresponding object file to be rebuilt, even if the implicit
102 # rule below goes indirectly through a .sub file.
103 define mkasmdep
104 $(dir $(patsubst %/,%,$(dir $(1))))$(notdir $(1:.s=.o)): $(1)
105 endef
106 $(foreach s,$(wildcard src/*/$(ARCH)*/*.s),$(eval $(call mkasmdep,$(s))))
108 %.o: $(ARCH)$(ASMSUBARCH)/%.sub
109 $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $(dir $<)$(shell cat $<)
111 %.o: $(ARCH)/%.s
112 $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $<
114 %.o: %.c $(GENH) $(IMPH)
115 $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $<
117 %.lo: $(ARCH)$(ASMSUBARCH)/%.sub
118 $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $(dir $<)$(shell cat $<)
120 %.lo: $(ARCH)/%.s
121 $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $<
123 %.lo: %.c $(GENH) $(IMPH)
124 $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $<
126 lib/libc.so: $(LOBJS)
127 $(CC) $(CFLAGS_ALL_SHARED) $(LDFLAGS) -nostdlib -shared \
128 -Wl,-e,_start -Wl,-Bsymbolic-functions \
129 -o $@ $(LOBJS) $(LIBCC)
131 lib/libc.a: $(OBJS)
132 rm -f $@
133 $(AR) rc $@ $(OBJS)
134 $(RANLIB) $@
136 $(EMPTY_LIBS):
137 rm -f $@
138 $(AR) rc $@
140 lib/%.o: crt/%.o
141 cp $< $@
143 lib/musl-gcc.specs: tools/musl-gcc.specs.sh config.mak
144 sh $< "$(includedir)" "$(libdir)" "$(LDSO_PATHNAME)" > $@
146 tools/musl-gcc: config.mak
147 printf '#!/bin/sh\nexec "$${REALGCC:-gcc}" "$$@" -specs "%s/musl-gcc.specs"\n' "$(libdir)" > $@
148 chmod +x $@
150 $(DESTDIR)$(bindir)/%: tools/%
151 $(INSTALL) -D $< $@
153 $(DESTDIR)$(libdir)/%.so: lib/%.so
154 $(INSTALL) -D -m 755 $< $@
156 $(DESTDIR)$(libdir)/%: lib/%
157 $(INSTALL) -D -m 644 $< $@
159 $(DESTDIR)$(includedir)/bits/%: arch/$(ARCH)/bits/%
160 $(INSTALL) -D -m 644 $< $@
162 $(DESTDIR)$(includedir)/%: include/%
163 $(INSTALL) -D -m 644 $< $@
165 $(DESTDIR)$(LDSO_PATHNAME): $(DESTDIR)$(libdir)/libc.so
166 $(INSTALL) -D -l $(libdir)/libc.so $@ || true
168 install-libs: $(ALL_LIBS:lib/%=$(DESTDIR)$(libdir)/%) $(if $(SHARED_LIBS),$(DESTDIR)$(LDSO_PATHNAME),)
170 install-headers: $(ALL_INCLUDES:include/%=$(DESTDIR)$(includedir)/%)
172 install-tools: $(ALL_TOOLS:tools/%=$(DESTDIR)$(bindir)/%)
176 .PRECIOUS: $(CRT_LIBS:lib/%=crt/%)
178 .PHONY: all clean install install-libs install-headers install-tools