diff options
author | Paul Traina <pst@FreeBSD.org> | 1994-10-28 00:04:24 +0000 |
---|---|---|
committer | Paul Traina <pst@FreeBSD.org> | 1994-10-28 00:04:24 +0000 |
commit | d3c12a74b68fb97b8d48d9ff18c5ce1002f5b340 (patch) | |
tree | 815beadc48fb0513bf69743aabc199a655754ed2 /comms/kermit/files | |
parent | install in /usr/local heirarchy and compile cleanly under 4.4bsd (diff) |
FreeBSD 2.x port of C-Kermit 5A(189)
Notes
Notes:
svn path=/head/; revision=285
Diffstat (limited to 'comms/kermit/files')
-rw-r--r-- | comms/kermit/files/Makefile.sed | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/comms/kermit/files/Makefile.sed b/comms/kermit/files/Makefile.sed new file mode 100644 index 000000000000..4090c5621cb6 --- /dev/null +++ b/comms/kermit/files/Makefile.sed @@ -0,0 +1,33 @@ +PROG= kermit +CFLAGS+= -I${.CURDIR} -DBSD44 -DCK_CURSES -DDYNAMIC -DTCPSOCKET -DTAYLOR_UUCP +SRCS= ckcmai.c ckucmd.c ckuusr.c ckuus2.c ckuus3.c ckuus4.c ckuus5.c \ + ckuus6.c ckuus7.c ckuusx.c ckuusy.c ckcpro.c ckcfns.c ckcfn2.c \ + ckcfn3.c ckuxla.c ckucon.c ckutio.c ckufio.c ckudia.c ckuscr.c \ + ckcnet.c + +# uncomment these for uucp setuid dialout +#CFLAGS+= -DSETREUID +#BINMODE=4510 +#BINOWN= uucp +#BINGRP= dialer + +BINDIR=%%PREFIX%%/bin +MANDIR=%%PREFIX%%/man/man + +CLEANFILES+= ckcpro.c ckcwart.o wart + +DPADD= ${LIBCURSES} ${LIBTERM} +LDADD= -lcurses -ltermcap + +.SUFFIXES: .w + +.w.c: + ./wart ${.IMPSRC} ${.TARGET} + +wart: ckwart.c + $(CC) -o wart ${.CURDIR}/ckwart.c + +ckcpro.c: ckcpro.w +ckcpro.c: wart + +.include <bsd.prog.mk> |