summaryrefslogtreecommitdiff
path: root/net/tnftp
diff options
context:
space:
mode:
authorlukem <lukem@pkgsrc.org>1999-10-11 07:02:45 +0000
committerlukem <lukem@pkgsrc.org>1999-10-11 07:02:45 +0000
commit6dfafca94e2a0b26a469e4981ebacbf7ad000e38 (patch)
treede5bd84ab97c936ca2a0df64bc05564bcd03fa66 /net/tnftp
parentb852c0f6e142fba82bc49108c69f071a3c5c45ba (diff)
downloadpkgsrc-6dfafca94e2a0b26a469e4981ebacbf7ad000e38.tar.gz
Import of canonical tnftp 20030825 sources,
to make it easier to track new versions.
Diffstat (limited to 'net/tnftp')
-rw-r--r--net/tnftp/files/libedit/Makefile.in60
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