From owner-cvs-usrsbin Thu Sep 28 11:23:54 1995 Return-Path: owner-cvs-usrsbin Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA23495 for cvs-usrsbin-outgoing; Thu, 28 Sep 1995 11:23:54 -0700 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA23485 ; Thu, 28 Sep 1995 11:23:46 -0700 Date: Thu, 28 Sep 1995 11:23:46 -0700 From: Bruce Evans Message-Id: <199509281823.LAA23485@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pcvt/vgaio Makefile Sender: owner-cvs-usrsbin@FreeBSD.org Precedence: bulk bde 95/09/28 11:23:45 Modified: usr.bin/colldef Makefile usr.sbin/pcvt/kbdio Makefile usr.sbin/pcvt/vgaio Makefile Log: Fix SRCS so that `make depend' works. There were some .l's and some .y's. The filenames in SRCS must have one of the extensions .s, .S, .c, or .cc if they are to be handled by bsd.dep.mk. Lex and yacc files must be converted to C files and kept around for everything to work. This is handled fairly automatically if the names of the generated C files are put in SRCS. Unfortunately these names must be put in CLEANFILES too. pcvt Makefiles: Fix DPADD. It was missing. Fix CLEANFILES. Some temporary files were missing. Fix CFLAGS. There were some `-I dir' options. There must be no whitespace separating -I and -D options from the corresponding args if these options are to be handled by bsd.dep.mk.