|
| 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/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 | +LDSO_PATHNAME = $(syslibdir)/ld-musl-$(ARCH)$(SUBARCH).so.1 |
| 55 | + |
| 56 | +-include config.mak |
| 57 | + |
| 58 | +all: $(ALL_LIBS) $(ALL_TOOLS) |
| 59 | + |
| 60 | +install: install-libs install-headers install-tools |
| 61 | + |
| 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 |
| 70 | + |
| 71 | +distclean: clean |
| 72 | + rm -f config.mak |
| 73 | + |
| 74 | +include/bits: |
| 75 | + @test "$(ARCH)" || { echo "Please set ARCH in config.mak before running make." ; exit 1 ; } |
| 76 | + ln -sf ../arch/$(ARCH)/bits $@ |
| 77 | + |
| 78 | +include/bits/alltypes.h.in: include/bits |
| 79 | + |
| 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 > $@ |
| 82 | + |
| 83 | +src/internal/version.h: $(wildcard
F438
VERSION .git) |
| 84 | + printf '#define VERSION "%s"\n' "$$(sh tools/version.sh)" > $@ |
| 85 | + |
| 86 | +src/internal/version.lo: src/internal/version.h |
| 87 | + |
| 88 | +src/ldso/dynlink.lo: arch/$(ARCH)/reloc.h |
| 89 | + |
| 90 | +crt/crt1.o crt/Scrt1.o: $(wildcard arch/$(ARCH)/crt_arch.h) |
| 91 | + |
| 92 | +crt/Scrt1.o: CFLAGS += -fPIC |
| 93 | + |
| 94 | +OPTIMIZE_SRCS = $(wildcard $(OPTIMIZE_GLOBS:%=src/%)) |
| 95 | +$(OPTIMIZE_SRCS:%.c=%.o) $(OPTIMIZE_SRCS:%.c=%.lo): CFLAGS += -O3 |
| 96 | + |
| 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) |
| 99 | + |
| 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)))) |
| 107 | + |
| 108 | +%.o: $(ARCH)$(ASMSUBARCH)/%.sub |
| 109 | + $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $(dir $<)$(shell cat $<) |
| 110 | + |
| 111 | +%.o: $(ARCH)/%.s |
| 112 | + $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $< |
| 113 | + |
| 114 | +%.o: %.c $(GENH) $(IMPH) |
| 115 | + $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $< |
| 116 | + |
| 117 | +%.lo: $(ARCH)$(ASMSUBARCH)/%.sub |
| 118 | + $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $(dir $<)$(shell cat $<) |
| 119 | + |
| 120 | +%.lo: $(ARCH)/%.s |
| 121 | + $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $< |
| 122 | + |
| 123 | +%.lo: %.c $(GENH) $(IMPH) |
| 124 | + $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $< |
| 125 | + |
| 126 | +lib/libc.so: $(LOBJS) |
| 127 | + $(CC) $(CFLAGS_ALL_SHARED) $(LDFLAGS) -nostdlib -shared \ |
| 128 | + -Wl,-e,_start -Wl,-Bsymbolic-functions \ |
| 129 | + -o $@ $(LOBJS) $(LIBCC) |
| 130 | + |
| 131 | +lib/libc.a: $(OBJS) |
| 132 | + rm -f $@ |
| 133 | + $(AR) rc $@ $(OBJS) |
| 134 | + $(RANLIB) $@ |
| 135 | + |
| 136 | +$(EMPTY_LIBS): |
| 137 | + rm -f $@ |
| 138 | + $(AR) rc $@ |
| 139 | + |
| 140 | +lib/%.o: crt/%.o |
| 141 | + cp $< $@ |
| 142 | + |
| 143 | +lib/musl-gcc.specs: tools/musl-gcc.specs.sh config.mak |
| 144 | + sh $< "$(includedir)" "$(libdir)" "$(LDSO_PATHNAME)" > $@ |
| 145 | + |
| 146 | +tools/musl-gcc: config.mak |
| 147 | + printf '#!/bin/sh\nexec "$${REALGCC:-gcc}" "$$@" -specs "%s/musl-gcc.specs"\n' "$(libdir)" > $@ |
| 148 | + chmod +x $@ |
| 149 | + |
| 150 | +$(DESTDIR)$(bindir)/%: tools/% |
| 151 | + $(INSTALL) -D $< $@ |
| 152 | + |
| 153 | +$(DESTDIR)$(libdir)/%.so: lib/%.so |
| 154 | + $(INSTALL) -D -m 755 $< $@ |
| 155 | + |
| 156 | +$(DESTDIR)$(libdir)/%: lib/% |
| 157 | + $(INSTALL) -D -m 644 $< $@ |
| 158 | + |
| 159 | +$(DESTDIR)$(includedir)/bits/%: arch/$(ARCH)/bits/% |
| 160 | + $(INSTALL) -D -m 644 $< $@ |
| 161 | + |
| 162 | +$(DESTDIR)$(includedir)/%: include/% |
| 163 | + $(INSTALL) -D -m 644 $< $@ |
| 164 | + |
| 165 | +$(DESTDIR)$(LDSO_PATHNAME): $(DESTDIR)$(libdir)/libc.so |
| 166 | + $(INSTALL) -D -l $(libdir)/libc.so $@ || true |
| 167 | + |
| 168 | +install-libs: $(ALL_LIBS:lib/%=$(DESTDIR)$(libdir)/%) $(if $(SHARED_LIBS),$(DESTDIR)$(LDSO_PATHNAME),) |
| 169 | + |
| 170 | +install-headers: $(ALL_INCLUDES:include/%=$(DESTDIR)$(includedir)/%) |
| 171 | + |
| 172 | +install-tools: $(ALL_TOOLS:tools/%=$(DESTDIR)$(bindir)/%) |
| 173 | + |
| 174 | + |
| 175 | + |
| 176 | +.PRECIOUS: $(CRT_LIBS:lib/%=crt/%) |
| 177 | + |
| 178 | +.PHONY: all clean install install-libs install-headers install-tools |
0 commit comments