diff options
| author | mycroft <mycroft@NetBSD.org> | 1996-05-11 11:37:59 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1996-05-11 11:37:59 +0000 |
| commit | f0c3c199fae6ebb6217ed10d882eca66f91c446e (patch) | |
| tree | 75b1f91ef789cfbc59f713be8f6543269d7f45c0 /gnu | |
| parent | 152a87dd9d26bfd11367d6f8b111e7576f2837fa (diff) | |
Update for removal of cexp.c.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/gcc/cpp/Makefile | 6 | ||||
| -rw-r--r-- | gnu/usr.bin/gcc/gcc2netbsd | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/gnu/usr.bin/gcc/cpp/Makefile b/gnu/usr.bin/gcc/cpp/Makefile index f5576e5f1db..ebc94fee7ea 100644 --- a/gnu/usr.bin/gcc/cpp/Makefile +++ b/gnu/usr.bin/gcc/cpp/Makefile @@ -1,9 +1,9 @@ # from: @(#)Makefile 6.4 (Berkeley) 2/21/91 -# $NetBSD: Makefile,v 1.1.1.1 1995/12/01 17:59:57 phil Exp $ +# $NetBSD: Makefile,v 1.2 1996/05/11 11:38:06 mycroft Exp $ PROG= cpp BINDIR= /usr/libexec -SRCS= cccp.c cexp.c obstack.c version.c +SRCS= cccp.c obstack.c cexp.c version.c CFLAGS+= -I. -I$(.CURDIR) -I$(.CURDIR)/../common -I$(.CURDIR)/../arch \ -I$(.CURDIR)/../arch/$(MACHINE_ARCH) \ -DGCC_INCLUDE_DIR=\"\" \ @@ -15,6 +15,8 @@ YFLAGS= MLINKS= cpp.1 cccp.1 cpp.1 gcpp.1 +CLEANFILES+= cexp.c + .PATH: $(.CURDIR)/../common afterinstall: diff --git a/gnu/usr.bin/gcc/gcc2netbsd b/gnu/usr.bin/gcc/gcc2netbsd index 47fab945fd7..fea12a4e71d 100644 --- a/gnu/usr.bin/gcc/gcc2netbsd +++ b/gnu/usr.bin/gcc/gcc2netbsd @@ -1,6 +1,6 @@ #!/usr/gnu/bin/perl # -# $NetBSD: gcc2netbsd,v 1.9 1996/04/03 08:18:16 phil Exp $ +# $NetBSD: gcc2netbsd,v 1.10 1996/05/11 11:37:59 mycroft Exp $ # # Perl script to convert a standard distribution directory for gcc into # a NetBSD source tree. @@ -95,7 +95,7 @@ $version = "2.7.2"; "genopinit.c", "genoutput.c", "genpeep.c", "genrecog.c" ); -@cppf = ("cccp.c", "cexp.c"); +@cppf = ("cccp.c"); @cppof = ("pcp.h", "cexp.y"); @@ -371,7 +371,7 @@ while ($line = <DATA>) { } elsif ($cmd[2] eq "cc1obj") { &dumpsrcs (@cc1objf, "objc-parse.c"); } elsif ($cmd[2] eq "cpp") { - &dumpsrcs (@cppf, @obver); + &dumpsrcs (@cppf, "cexp.c", @obver); } elsif ($cmd[2] eq "g++") { &dumpsrcs (@gplusf, @obver); } elsif ($cmd[2] eq "common") { @@ -581,6 +581,8 @@ YFLAGS= MLINKS= cpp.1 cccp.1 cpp.1 gcpp.1 +CLEANFILES+= cexp.c + .PATH: $(.CURDIR)/../common afterinstall: |
