From: Rich Felker Date: Thu, 17 Feb 2011 20:15:03 +0000 (-0500) Subject: improve Makefile handling of git checkouts with missing lib/ and config.mak X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=a36164c4743df0a9112fb3641966b213694e25f7 improve Makefile handling of git checkouts with missing lib/ and config.mak --- 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