diff options
author | 1996-08-29 02:12:41 +0000 | |
---|---|---|
committer | 1996-08-29 02:12:41 +0000 | |
commit | 1e409ee66062ad923a68e196da8dc5f9520bbbe7 (patch) | |
tree | 97c3eb08ee239ff0ab47ec8bc2382088cbd484d3 | |
parent | Slightly better fix to generate rcsfile.5 (diff) | |
download | wireguard-openbsd-1e409ee66062ad923a68e196da8dc5f9520bbbe7.tar.xz wireguard-openbsd-1e409ee66062ad923a68e196da8dc5f9520bbbe7.zip |
top level definition of CC and CPPFLAGS
-rw-r--r-- | gnu/usr.bin/rcs/Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/usr.bin/rcs/Makefile.in b/gnu/usr.bin/rcs/Makefile.in index cb244242c93..5bfe37eabf3 100644 --- a/gnu/usr.bin/rcs/Makefile.in +++ b/gnu/usr.bin/rcs/Makefile.in @@ -1,6 +1,6 @@ # Master makefile for RCS -# $Id: Makefile.in,v 1.3 1996/08/12 07:47:11 etheisen Exp $ +# $Id: Makefile.in,v 1.4 1996/08/29 02:12:41 millert Exp $ # Copyright 1995 Paul Eggert # Distributed under license by the Free Software Foundation, Inc. @@ -32,6 +32,8 @@ VPATH = @srcdir@ @SET_MAKE@ SHELL = /bin/sh +CC = @CC@ +CPPFLAGS = @CPPFLAGS@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ @@ -49,7 +51,7 @@ manext = 1 # Documentation directories; special handling INSTALL_MAN = man # All other subdirs: -SUBDIRS = src $(INSTALL_MAN) +SUBDIRS = $(INSTALL_MAN) src default :: all @@ -63,7 +65,7 @@ maintainer-clean :: MDEFINES = bindir='$(bindir)' mandir='$(mandir)' manext='$(manext)' \ prefix='$(prefix)' binprefix='$(binprefix)' \ - manprefix='$(manprefix)' CFLAGS='$(CFLAGS)' \ + manprefix='$(manprefix)' CFLAGS='$(CFLAGS)' CPPFLAGS='$(CPPFLAGS)'\ CC='$(CC)' LDFLAGS='$(LDFLAGS)' \ INSTALL_MAN='$(INSTALL_MAN)' |