summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-05-04 01:30:26 +0000
committerEric Andersen <andersen@codepoet.org>2001-05-04 01:30:26 +0000
commit84a9d87e2d6b237ff10990338ce76f050e1c3e2a (patch)
tree1b7bd195305c168149b6e1977bac2e09174346bb /Makefile
parent0f54aa4d170ec57806c66720b5055a8bffdd47ce (diff)
This is kindof neat. With this update, you can now simply set your
PATH and things will now simply compile vs uClibc. Or you can add INSTALL_DIR/usr/bin to your path and use it as a cross compiler. Either way, it works now. -Erik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 10eb8119b..667c961d8 100644
--- a/Makefile
+++ b/Makefile
@@ -42,7 +42,7 @@ $(LIBNAME): subdirs
shared: $(LIBNAME)
@rm -rf tmp
@mkdir tmp
- @make -C ld.so-1/d-link
+ @$(MAKE) -C ld.so-1/d-link
@(cd tmp; CC=$(CC) /bin/sh ../extra/scripts/get-needed-libgcc-objects.sh)
if [ -s ./tmp/libgcc-need.a ] ; then \
$(CC) -g $(LDFLAGS) -shared -o $(SHARED_FULLNAME) \
@@ -57,8 +57,8 @@ shared: $(LIBNAME)
@rm -rf tmp
ln -sf $(SHARED_FULLNAME) $(SHARED_MAJORNAME)
ln -sf $(SHARED_MAJORNAME) libc.so
- @make -C crypt shared
- @make -C ld.so-1
+ @$(MAKE) -C crypt shared
+ @$(MAKE) -C ld.so-1
done: $(LIBNAME) $(DO_SHARED)
@echo
@@ -97,7 +97,7 @@ tags:
clean: subdirs_clean halfclean
@rm -rf tmp
rm -f include/asm include/linux include/bits
- @make -C ld.so-1 clean
+ @$(MAKE) -C ld.so-1 clean
subdirs: $(patsubst %, _dir_%, $(DIRS))
subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS) test)
@@ -112,7 +112,7 @@ install: install_runtime install_dev install_ldso
# Installs shared library
install_runtime:
- @make -C crypt install
+ @$(MAKE) -C crypt install
ifneq ($(DO_SHARED),)
install -d $(INSTALL_DIR)/lib
rm -rf $(INSTALL_DIR)/lib/$(SHARED_FULLNAME)
@@ -148,12 +148,12 @@ install_dev:
install -m 644 $(LIBNAME) $(INSTALL_DIR)/lib/
@if [ -f crt0.o ] ; then install -m 644 crt0.o $(INSTALL_DIR)/lib/; fi
install -d $(INSTALL_DIR)/bin
- @if [ -f extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc ] ; then install -m 755 extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc $(INSTALL_DIR)/bin/ ; fi
+ $(MAKE) -C extra/gcc-uClibc install
install_ldso:
ifeq ($(strip $(DO_SHARED)),shared)
- @make -C ld.so-1 install
+ @$(MAKE) -C ld.so-1 install
$(TOPDIR)ld.so-1/util/ldconfig
else
@echo "Skipping shared library support"