From a36164c4743df0a9112fb3641966b213694e25f7 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 17 Feb 2011 15:15:03 -0500 Subject: [PATCH] improve Makefile handling of git checkouts with missing lib/ and config.mak --- Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 13a24e3c..c3d29d24 100644 --- a/Makefile +++ b/Makefile @@ -54,6 +54,7 @@ clean: 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 @@ -73,19 +74,22 @@ include/bits/alltypes.h: include/bits/alltypes.h.sh %.lo: %.c $(GENH) $(CC) $(CFLAGS) $(INC) $(PIC) -c -o $@ $< -lib/libc.so: $(LOBJS) +lib: + mkdir -p lib + +lib/libc.so: $(LOBJS) lib $(CC) $(LDFLAGS) -o $@ $(LOBJS) -lgcc $(OBJCOPY) --weaken $@ -lib/libc.a: $(OBJS) +lib/libc.a: $(OBJS) lib rm -f $@ $(AR) rc $@ $(OBJS) $(RANLIB) $@ -$(EMPTY_LIBS): +$(EMPTY_LIBS): lib $(AR) rc $@ -lib/%.o: crt/%.o +lib/%.o: crt/%.o lib cp $< $@ tools/musl-gcc: tools/gen-musl-gcc.sh config.mak -- 2.20.1