diff options
author | jkh <jkh@FreeBSD.org> | 1995-08-30 07:28:06 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-08-30 07:28:06 +0000 |
commit | 526f53af91fbe589dd5e80bb785ce945d8964867 (patch) | |
tree | 0fd022c1066a7097d0fcc5a1c6ef0d2d030782ea /usr.bin/ee/Makefile | |
parent | cea39e287b60480a69cfcbb445d0981e110fd727 (diff) | |
parent | 48b32133d6ff4f84ba7f4452fa822ce3a1830d35 (diff) | |
download | FreeBSD-src-526f53af91fbe589dd5e80bb785ce945d8964867.zip FreeBSD-src-526f53af91fbe589dd5e80bb785ce945d8964867.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r10452,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'usr.bin/ee/Makefile')
-rw-r--r-- | usr.bin/ee/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/usr.bin/ee/Makefile b/usr.bin/ee/Makefile new file mode 100644 index 0000000..b9caaa4 --- /dev/null +++ b/usr.bin/ee/Makefile @@ -0,0 +1,22 @@ +CFLAGS+= -DCAP -DHAS_NCURSES -DHAS_UNISTD -DHAS_STDARG -DHAS_STDLIB \ + -DHAS_CTYPE -DHAS_SYS_IOCTL -DHAS_SYS_WAIT -DSLCT_HDR + +PROG= ee +SRCS= ee.c +LINKS= ${BINDIR}/ee ${BINDIR}/ree +DPADD= ee.cat ${LIBNCURSES} ${LIBMYTINFO} +LDADD= -lncurses -lmytinfo +CLEANFILES+= ee.cat + +# I'm not sure if this is kosher, but I don't see any system default just +# now. +LANG?= en_US.ISO_8859-1 + +ee.cat: ${.CURDIR}/ee.msg + gencat -new ee.cat ${.CURDIR}/ee.msg + +afterinstall: ee.cat + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ee.cat \ + ${DESTDIR}/usr/share/nls/${LANG}/ee.cat + +.include <bsd.prog.mk> |