X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=Makefile;h=a47439b87daff338d28685d89987e7d248ae5469;hp=e9dbdf7fcdb2fc5ee67e4eb0c2d1a1cba30cdb7f;hb=127ab575fc2b200459dc5543d25f5e87d3fdb9db;hpb=6027201e5a7c810b3073c85f7373aae84b303ba3 diff --git a/Makefile b/Makefile index e9dbdf7f..a47439b8 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ GENH = include/bits/alltypes.h CFLAGS = -Os -nostdinc -ffreestanding -std=c99 -D_XOPEN_SOURCE=700 -pipe LDFLAGS = -nostdlib -shared -Wl,-Bsymbolic -INC = -I./include -I./src/internal +INC = -I./include -I./src/internal -I./arch/$(ARCH) PIC = -fPIC AR = $(CROSS_COMPILE)ar RANLIB = $(CROSS_COMPILE)ranlib @@ -48,9 +48,16 @@ clean: rm -f crt/*.o rm -f $(OBJS) rm -f $(LOBJS) - rm -f $(ALL_LIBS) lib/* + rm -f $(ALL_LIBS) lib/*.[ao] lib/*.so rm -f $(ALL_TOOLS) rm -f $(GENH) + rm -f include/bits + +include/bits: + @test "$(ARCH)" || { echo "Please set ARCH in config.mak before running make." ; exit 1 ; } + ln -sf ../arch/$(ARCH)/bits $@ + +include/bits/alltypes.h.sh: include/bits include/bits/alltypes.h: include/bits/alltypes.h.sh sh $< > $@ @@ -77,6 +84,7 @@ lib/libc.a: $(OBJS) $(RANLIB) $@ $(EMPTY_LIBS): + rm -f $@ $(AR) rc $@ lib/%.o: crt/%.o