diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-05-23 17:40:40 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-05-23 17:40:40 +0000 |
commit | 76d66708aa1f1945e847cd060f673593fd3cc3c5 (patch) | |
tree | a33075f9c7511fd77e58844a7034e468e928a1ca | |
parent | 5612bf64b2c6de4a56cd3c159950309e1d7b1921 (diff) |
2002-05-23 Marcus Brinkmann <marcus@gnu.org>
* Makefile: Fix last change, constraining vpath even further.
-rw-r--r-- | serverboot/ChangeLog | 4 | ||||
-rw-r--r-- | serverboot/Makefile | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/serverboot/ChangeLog b/serverboot/ChangeLog index 6feacd03..9acad23e 100644 --- a/serverboot/ChangeLog +++ b/serverboot/ChangeLog @@ -1,3 +1,7 @@ +2002-05-23 Marcus Brinkmann <marcus@gnu.org> + + * Makefile: Fix last change, constraining vpath even further. + 2002-05-20 Ognyan Kulev <ogi@fmi.uni-sofia.bg> * Makefile: Move inclusion of ../Makeconf before using $(srcdir) diff --git a/serverboot/Makefile b/serverboot/Makefile index 7f66f45a..454b228f 100644 --- a/serverboot/Makefile +++ b/serverboot/Makefile @@ -41,7 +41,11 @@ vpath boot_script.c $(srcdir)/../boot vpath userland-boot.c $(srcdir)/../boot # Look for zip stuff -vpath %.c $(srcdir)/../exec +vpath unzip.c $(srcdir)/../exec +vpath inflate.c $(srcdir)/../exec +vpath util.c $(srcdir)/../exec +vpath do-bunzip2.c $(srcdir)/../exec + # If SMALL_BZIP2 is defined, use relatively small memory. # It's crucial for serverboot, because swap is not enabled yet. CPPFLAGS += -I$(srcdir)/../exec -DGZIP -DBZIP2 -DSMALL_BZIP2 |