diff options
author | Roland McGrath <roland@redhat.com> | 1993-03-29 19:30:33 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-03-29 19:30:33 +0000 |
commit | 0c1c2ff3d017b658aaca81920dd4409f7918cac4 (patch) | |
tree | 5b547658a1e1688a3b0fda2f984b7d7337a6beb0 /GNUmakefile | |
parent | d1a988ce9f5013da2d9b619a3206ae8c667c69ea (diff) | |
download | gunmake-0c1c2ff3d017b658aaca81920dd4409f7918cac4.tar.gz |
Formerly GNUmakefile.~98~
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index 484b478..6658ff3 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -42,6 +42,11 @@ endif # Get most of the information from the Unix-compatible makefile. include compatMakefile +# Remove autoconf magic. +extras := $(filter-out getloadavg.o @%@,$(extras)) getloadavg.o +LOADLIBES := $(filter-out @%@,$(LOADLIBES)) +ALLOCA := $(filter-out @%@,$(ALLOCA)) + # Tell autoconf/autoheader to use m4 files from the master source. ACFLAGS := -m /home/gd/gnu/autoconf configure config.h.in: $(patsubst %,/home/gd/gnu/autoconf/%.m4,\ @@ -49,12 +54,11 @@ configure config.h.in: $(patsubst %,/home/gd/gnu/autoconf/%.m4,\ config.h.in: /home/gd/gnu/autoconf/acconfig.h ifdef customs -extras := $(filter-out getloadavg.o @%@,$(extras)) getloadavg.o -LOADLIBES := $(filter-out @%@,$(LOADLIBES)) -ALLOCA := $(filter-out @%@,$(ALLOCA)) +defines := $(defines) -Ipmake/customs -Ipmake/lib/include +LOADLIBES := $(addprefix pmake/customs/,customslib.o rpc.o xlog.o) \ + pmake/lib/sprite/libsprite.a endif - ifdef ARCH ifndef no_libc |