diff options
author | 1997-03-03 05:21:32 +0000 | |
---|---|---|
committer | 1997-03-03 05:21:32 +0000 | |
commit | a98adc3e17908d66dfe10af2a5b25d06081f357b (patch) | |
tree | d44d9cda5cbcf06ba0d11e23698a9a393f77a554 | |
parent | changed a few 'CFLAGS=' to 'CFLAGS+='. closes PR user/116. (diff) | |
download | wireguard-openbsd-a98adc3e17908d66dfe10af2a5b25d06081f357b.tar.xz wireguard-openbsd-a98adc3e17908d66dfe10af2a5b25d06081f357b.zip |
changed to CFLAGS+=, closes PR user/116.
-rw-r--r-- | usr.bin/make/lst.lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/lst.lib/Makefile b/usr.bin/make/lst.lib/Makefile index 88761d342a9..5c528259f58 100644 --- a/usr.bin/make/lst.lib/Makefile +++ b/usr.bin/make/lst.lib/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1996/11/30 21:09:09 millert Exp $ +# $OpenBSD: Makefile,v 1.4 1997/03/03 05:21:32 flipk Exp $ # $NetBSD: Makefile,v 1.4 1996/11/06 17:59:31 christos Exp $ OBJ=lstAppend.o lstDupl.o lstInit.o lstOpen.o lstAtEnd.o lstEnQueue.o \ @@ -7,5 +7,5 @@ OBJ=lstAppend.o lstDupl.o lstInit.o lstOpen.o lstAtEnd.o lstEnQueue.o \ lstDatum.o lstForEach.o lstMember.o lstSucc.o lstDeQueue.o \ lstForEachFrom.o lstDestroy.o lstNext.o -CFLAGS=-I.. +CFLAGS+=-I.. all: ${OBJ} |