diff options
author | Roland McGrath <roland@redhat.com> | 1992-05-26 10:26:59 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1992-05-26 10:26:59 +0000 |
commit | b23887489521363f040912c18daffaee0a7267ae (patch) | |
tree | 3a8df12092b0c734f21935a5972d9130c6ce892a | |
parent | fc1ec6ab56acc4968b7b5e9cfde61e4d8210b171 (diff) | |
download | gunmake-b23887489521363f040912c18daffaee0a7267ae.tar.gz |
Formerly GNUmakefile.~61~
-rw-r--r-- | GNUmakefile | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/GNUmakefile b/GNUmakefile index 4775618..6a557d9 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -61,19 +61,14 @@ libc_dir = /home/gd2/gnu/libc/$(ARCH) ifneq ($(wildcard $(libc_dir)),) ifneq ($(wildcard $(libc_dir)/works-for-make),) dash_m := -M -CPPFLAGS := -I$(libc_dir)/ansi -LDFLAGS := -nostdlib $(libc_dir)/start.o -ifeq ($(ARCH),hp300) -gcc-arch = hp300bsd -else -gcc-arch = $(ARCH) -endif +CPPFLAGS := -I$(libc_dir)/include +LDFLAGS := -nostdlib $(libc_dir)/lib/start.o LOADLIBES := $(LOADLIBES) \ - $(libc_dir)/mcheck-init.o \ - $(libc_dir)/libc.a \ + $(libc_dir)/lib/mcheck-init.o \ + $(libc_dir)/lib/libc.a \ -lgcc \ - $(libc_dir)/libc.a -$(prog): $(libc_dir)/libc.a + $(libc_dir)/lib/libc.a +$(prog): $(libc_dir)/lib/libc.a # glob is in the C library. globdep = |