diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-06-02 17:10:13 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-06-02 17:10:13 +0000 |
| commit | 6b5139742ce86ee86ddf5e16675d5dfd66041185 (patch) | |
| tree | 829842459d310abf9cf0c87cd416ae874a06b803 | |
| parent | 15e85e0293b63e6fa166b83c43a1070ca3eec0b6 (diff) | |
Notes
| -rw-r--r-- | lib/libpcap/Makefile | 4 | ||||
| -rw-r--r-- | libexec/ftpd/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libpcap/Makefile b/lib/libpcap/Makefile index 972f3162c4f2..50a2429b9d3b 100644 --- a/lib/libpcap/Makefile +++ b/lib/libpcap/Makefile @@ -9,7 +9,7 @@ SRCS= \ bpf_filter.c bpf_image.c \ grammar.y scanner.l -CLEANFILES+= scanner.c tokdefs.h grammar.c scanner.c +CLEANFILES+= lex.yy.c tokdefs.h grammar.c scanner.c # CFLAGS+=-Wall -I. -I${.CURDIR} -DFDDI -Dyylval=pcap_lval CFLAGS+=-DFDDI -I. -I${.CURDIR} MAN3= pcap.3 @@ -25,7 +25,7 @@ beforeinstall: scanner.o: tokdefs.h tokdefs.h: grammar.c - mv -f grammar.tab.h tokdefs.h + mv -f y.tab.h tokdefs.h .include <bsd.lib.mk> diff --git a/libexec/ftpd/Makefile b/libexec/ftpd/Makefile index 9bee7c2ac73d..a3065e72793f 100644 --- a/libexec/ftpd/Makefile +++ b/libexec/ftpd/Makefile @@ -2,13 +2,13 @@ PROG= ftpd MAN8= ftpd.8 -SRCS= ftpd.c ftpcmd.y logwtmp.c popen.c skey-stuff.c +SRCS= ftpd.c ftpcmd.c logwtmp.c popen.c skey-stuff.c CFLAGS+=-DSETPROCTITLE -DSKEY -DSTATS LDADD= -lskey -lmd -lcrypt -lutil DPADD= ${LIBSKEY} ${LIBMD} ${LIBCRYPT} ${LIBUTIL} -CLEANFILES+=ftpcmd.tab.h +CLEANFILES+=ftpcmd.c y.tab.h .include <bsd.prog.mk> |
