diff options
author | ache <ache@FreeBSD.org> | 1994-10-09 17:50:50 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-10-09 17:50:50 +0000 |
commit | 933cf8139187b6b452005f83e7f29d65be96248b (patch) | |
tree | 79570d3a28ff891ca964e55f3ade06476b294472 /lib | |
parent | d1c7980fc69d7204b403be4f433a5b732e697c66 (diff) | |
download | FreeBSD-src-933cf8139187b6b452005f83e7f29d65be96248b.zip FreeBSD-src-933cf8139187b6b452005f83e7f29d65be96248b.tar.gz |
Split all binaries from makefile now
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libmytinfo/Makefile | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/lib/libmytinfo/Makefile b/lib/libmytinfo/Makefile index d60257e..7926fef 100644 --- a/lib/libmytinfo/Makefile +++ b/lib/libmytinfo/Makefile @@ -1,38 +1,25 @@ # Makefile for libmytinfo -# $Id$ +# $Id: Makefile,v 1.2 1994/10/09 16:37:19 ache Exp $ LIB= mytinfo -BINDIR= /usr/bin SRCS= addstr.c binorder.c buildpath.c caplist.c capsort.c compar.c\ fillterm.c findcap.c findterm.c getother.c gettbin.c\ gettcap.c gettinfo.c tcapconv.c tcapvars.c termcap.c\ terminfo.c tgoto.c tiget.c tmatch.c tparm.c tputs.c tty.c version.c -MAN1= tconv.1 -MLINKS= tconv.1 tic.1 tconv.1 captoinfo.1 CLEANFILES+= binorder.c caplist.c capsort.c mkbinorder mkcaplist \ mkcapsort mktermhead mkversion readcaps.o term.h* \ - version.c quit.o tconv + version.c CFLAGS+=-Wall CAPS= 1000 -all: $${_LIBS} tconv - beforeinstall: term.h -cmp -s term.h ${DESTDIR}/usr/include/term.h > \ /dev/null 2>&1 || \ $(INSTALL) $(COPY) -o ${BINOWN} -g ${BINGRP} -m 444 term.h \ ${DESTDIR}/usr/include -afterinstall: - $(INSTALL) $(COPY) $(STRIP) -o $(BINOWN) -g $(BINGRP) -m $(BINMODE) \ - tconv ${DESTDIR}${BINDIR} - rm -f ${DESTDIR}${BINDIR}/tic - ln ${DESTDIR}${BINDIR}/tconv ${DESTDIR}${BINDIR}/tic - rm -f ${DESTDIR}${BINDIR}/captoinfo - ln ${DESTDIR}${BINDIR}/tconv ${DESTDIR}${BINDIR}/captoinfo - capsort.c: mkcapsort ./mkcapsort > capsort.c @@ -67,8 +54,4 @@ mktermhead: mktermhead.c readcaps.o mkcaplist: mkcaplist.c readcaps.o $(CC) $(CFLAGS) $(LDFLAGS) -o mkcaplist ${.CURDIR}/mkcaplist.c readcaps.o -tconv: tconv.c quit.o $${_LIBS} - $(CC) ${CFLAGS} $(LDFLAGS) -L. -o tconv ${.CURDIR}/tconv.c quit.o -l$(LIB) - .include <bsd.lib.mk> - |