blob: 56bfb40d1834ca508673139c3a29cbef1aaedaed [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#
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
11exec_prefix = /usr/local
12bindir = $(exec_prefix)/bin
13
14prefix = /usr/local/musl
15includedir = $(prefix)/include
16libdir = $(prefix)/lib
17
18SRCS = $(sort $(wildcard src/*/*.c))
19OBJS = $(SRCS:.c=.o)
20LOBJS = $(OBJS:.o=.lo)
21GENH = include/bits/alltypes.h
22
Rich Felker60272012011-02-13 16:48:39 -050023CFLAGS = -Os -nostdinc -ffreestanding -std=c99 -D_XOPEN_SOURCE=700 -pipe
Rich Felker0b44a032011-02-12 00:22:29 -050024LDFLAGS = -nostdlib -shared -Wl,-Bsymbolic
Rich Felker7b2dd222011-02-15 03:56:52 -050025INC = -I./include -I./src/internal -I./arch/$(ARCH)
Rich Felker0b44a032011-02-12 00:22:29 -050026PIC = -fPIC
27AR = $(CROSS_COMPILE)ar
28RANLIB = $(CROSS_COMPILE)ranlib
29OBJCOPY = $(CROSS_COMPILE)objcopy
30
31ALL_INCLUDES = $(sort $(wildcard include/*.h include/*/*.h) $(GENH))
32
33EMPTY_LIB_NAMES = m rt pthread crypt util xnet resolv
34EMPTY_LIBS = $(EMPTY_LIB_NAMES:%=lib/lib%.a)
35CRT_LIBS = lib/crt1.o lib/crti.o lib/crtn.o
36LIBC_LIBS = lib/libc.a
37ALL_LIBS = $(LIBC_LIBS) $(CRT_LIBS) $(EMPTY_LIBS)
38
39ALL_TOOLS = tools/musl-gcc
40
41-include config.mak
42
43all: $(ALL_LIBS) $(ALL_TOOLS)
44
45install: $(ALL_LIBS:lib/%=$(DESTDIR)$(libdir)/%) $(ALL_INCLUDES:include/%=$(DESTDIR)$(includedir)/%) $(ALL_TOOLS:tools/%=$(DESTDIR)$(bindir)/%)
46
47clean:
48 rm -f crt/*.o
49 rm -f $(OBJS)
50 rm -f $(LOBJS)
51 rm -f $(ALL_LIBS) lib/*
52 rm -f $(ALL_TOOLS)
53 rm -f $(GENH)
Rich Felker1355fdc2011-02-15 00:33:23 -050054 rm -f include/bits
55
56include/bits:
Rich Felkera36164c2011-02-17 15:15:03 -050057 @test "$(ARCH)" || { echo "Please set ARCH in config.mak before running make." ; exit 1 ; }
Rich Felker1355fdc2011-02-15 00:33:23 -050058 ln -sf ../arch/$(ARCH)/bits $@
59
60include/bits/alltypes.h.sh: include/bits
Rich Felker0b44a032011-02-12 00:22:29 -050061
62include/bits/alltypes.h: include/bits/alltypes.h.sh
63 sh $< > $@
64
65%.o: $(ARCH)/%.s
66 $(CC) $(CFLAGS) $(INC) -c -o $@ $<
67
68%.o: %.c $(GENH)
69 $(CC) $(CFLAGS) $(INC) -c -o $@ $<
70
71%.lo: $(ARCH)/%.s
72 $(CC) $(CFLAGS) $(INC) $(PIC) -c -o $@ $<
73
74%.lo: %.c $(GENH)
75 $(CC) $(CFLAGS) $(INC) $(PIC) -c -o $@ $<
76
Rich Felker4fd15952011-02-17 17:12:52 -050077lib/libc.so: $(LOBJS)
Rich Felker0b44a032011-02-12 00:22:29 -050078 $(CC) $(LDFLAGS) -o $@ $(LOBJS) -lgcc
79 $(OBJCOPY) --weaken $@
80
Rich Felker4fd15952011-02-17 17:12:52 -050081lib/libc.a: $(OBJS)
Rich Felker0b44a032011-02-12 00:22:29 -050082 rm -f $@
83 $(AR) rc $@ $(OBJS)
84 $(RANLIB) $@
85
Rich Felker4fd15952011-02-17 17:12:52 -050086$(EMPTY_LIBS):
87 rm -f $@
Rich Felker0b44a032011-02-12 00:22:29 -050088 $(AR) rc $@
89
Rich Felker4fd15952011-02-17 17:12:52 -050090lib/%.o: crt/%.o
Rich Felker0b44a032011-02-12 00:22:29 -050091 cp $< $@
92
93tools/musl-gcc: tools/gen-musl-gcc.sh config.mak
94 sh $< "$(prefix)" > $@ || { rm -f $@ ; exit 1 ; }
95 chmod +x $@
96
97$(DESTDIR)$(bindir)/%: tools/%
98 install -D $< $@
99
100$(DESTDIR)$(prefix)/%: %
101 install -D -m 644 $< $@
102
103.PRECIOUS: $(CRT_LIBS:lib/%=crt/%)
104
105.PHONY: all clean install