From c09f6943822b508ed76277eb48a50b51c5dc484a Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 6 Apr 2009 16:38:28 -0700 Subject: [PATCH] Add back "install: all" to the com32 devel directories "make install" in the com32 directory currently installs the devel environment, which should be build using the host toolchain... so make it so. --- com32/gpllib/Makefile | 2 +- com32/lib/Makefile | 2 +- com32/libutil/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/com32/gpllib/Makefile b/com32/gpllib/Makefile index 80138cf..46ed42e 100644 --- a/com32/gpllib/Makefile +++ b/com32/gpllib/Makefile @@ -36,7 +36,7 @@ spotless: clean # Mixing in the GPL include files is suboptimal, but I'm not sure # there is a better way to do it. -install: +install: all mkdir -m 755 -p $(INSTALLROOT)$(COM32DIR) install -m 644 libcom32gpl.a $(INSTALLROOT)$(COM32DIR) mkdir -p $(INSTALLROOT)$(COM32DIR)/include/ diff --git a/com32/lib/Makefile b/com32/lib/Makefile index 0c4f095..984c6df 100644 --- a/com32/lib/Makefile +++ b/com32/lib/Makefile @@ -128,7 +128,7 @@ spotless: clean rm -f *.a rm -f *~ \#* */*~ */\#* -install: +install: all mkdir -m 755 -p $(INSTALLROOT)$(COM32DIR) install -m 644 libcom32.a com32.ld $(INSTALLROOT)$(COM32DIR) -rm -rf $(INSTALLROOT)$(COM32DIR)/include diff --git a/com32/libutil/Makefile b/com32/libutil/Makefile index 579f6f2..02789ca 100644 --- a/com32/libutil/Makefile +++ b/com32/libutil/Makefile @@ -58,7 +58,7 @@ spotless: clean rm -f *.lss *.a *.c32 *.com rm -f *~ \#* -install: +install: all mkdir -m 755 -p $(INSTALLROOT)$(COM32DIR) install -m 644 libutil_com.a libutil_lnx.a $(INSTALLROOT)$(COM32DIR) -- 2.7.4