diff options
author | lukem <lukem> | 1999-10-11 07:02:45 +0000 |
---|---|---|
committer | lukem <lukem> | 1999-10-11 07:02:45 +0000 |
commit | ad393082d72cc91079781bd437e77eb792e02116 (patch) | |
tree | de5bd84ab97c936ca2a0df64bc05564bcd03fa66 | |
parent | 160cf8e63828e0f6f426f8f62cb47ee0b32c4a70 (diff) | |
download | pkgsrc-ad393082d72cc91079781bd437e77eb792e02116.tar.gz |
Import of canonical tnftp 20030825 sources,
to make it easier to track new versions.
-rw-r--r-- | net/tnftp/files/libedit/Makefile.in | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/net/tnftp/files/libedit/Makefile.in b/net/tnftp/files/libedit/Makefile.in new file mode 100644 index 00000000000..65304b33245 --- /dev/null +++ b/net/tnftp/files/libedit/Makefile.in @@ -0,0 +1,60 @@ +# +# $Id: Makefile.in,v 1.1.1.1 1999/10/11 07:02:45 lukem Exp $ +# + +srcdir = @srcdir@ +VPATH = @srcdir@ +SHELL = /bin/sh + +CC = @CC@ +CFLAGS = -I${srcdir} -I${srcdir}/.. -I. -I.. @INCLUDES@ @CFLAGS@ + +AR = @AR@ +RANLIB = @RANLIB@ + +LIB = libedit.a + +SRCS = chared.c common.c el.c emacs.c fcns.c help.c hist.c key.c map.c \ + parse.c prompt.c read.c refresh.c search.c sig.c term.c tty.c vi.c \ + tokenizer.c history.c +OBJS = ${SRCS:.c=.o} + + +all: ${LIB} + +${LIB}: ${OBJS} + ${AR} cr $@ ${OBJS} + ${RANLIB} $@ + +install: + +clean: + rm -f ${LIB} ${OBJS} + rm -f common.h emacs.h fcns.c fcns.h help.c help.h vi.h + +distclean: clean + rm -f Makefile makelist + + +vi.h: vi.c + sh makelist -h ${srcdir}/vi.c > $@ + +emacs.h: emacs.c + sh makelist -h ${srcdir}/emacs.c > $@ + +common.h: common.c + sh makelist -h ${srcdir}/common.c > $@ + +fcns.h: vi.h emacs.h common.h + sh makelist -fh vi.h emacs.h common.h > $@ + +fcns.c: vi.h emacs.h common.h fcns.h + sh makelist -fc vi.h emacs.h common.h > $@ + +help.c: vi.c emacs.c common.c + sh makelist -bc ${srcdir}/vi.c ${srcdir}/emacs.c ${srcdir}/common.c > $@ + +help.h: vi.c emacs.c common.c + sh makelist -bh ${srcdir}/vi.c ${srcdir}/emacs.c ${srcdir}/common.c > $@ + +${OBJS}: common.h emacs.h fcns.c fcns.h help.c help.h vi.h |