diff options
author | bde <bde@FreeBSD.org> | 1996-09-04 22:25:35 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-09-04 22:25:35 +0000 |
commit | 22cf3c1924f81c7e481a57a0e0a5669eb7edf41a (patch) | |
tree | 4cd7587f2b059fb83cf6c448d995092c55ba63ff /usr.sbin/tzsetup | |
parent | 741f1cebaf61f798f750ea442f819208c87f8b89 (diff) | |
download | FreeBSD-src-22cf3c1924f81c7e481a57a0e0a5669eb7edf41a.zip FreeBSD-src-22cf3c1924f81c7e481a57a0e0a5669eb7edf41a.tar.gz |
Removed unused `-I.'s from CFLAGS.
"." means the object directory, so it is just confusing to use it
when nothing is included from the object directory unless the object
directory is also the source directory. It is confusing for "."
not to mean the source directory anyway, so used `-I.'s should be
replaced by `-I${.OBJDIR}'.
Diffstat (limited to 'usr.sbin/tzsetup')
-rw-r--r-- | usr.sbin/tzsetup/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tzsetup/Makefile b/usr.sbin/tzsetup/Makefile index 8e08dbb..001c257 100644 --- a/usr.sbin/tzsetup/Makefile +++ b/usr.sbin/tzsetup/Makefile @@ -1,9 +1,9 @@ -# $Id: Makefile,v 1.2 1996/01/23 21:06:25 wosch Exp $ +# $Id: Makefile,v 1.3 1996/01/24 00:11:57 wosch Exp $ PROG= tzsetup MAN8= tzsetup.8 SRCS= main.c tzmenu.c menus.c -CFLAGS+= -I. -I${.CURDIR} +CFLAGS+= -I${.CURDIR} CLEANFILES+= menus.c LDADD+= -ldialog -lncurses -lmytinfo DPADD+= ${LIBDIALOG} ${LIBNCURSES} ${LIBMYTINFO} |