Module Name: othersrc
Committed By: lukem
Date: Mon Jan 4 06:26:58 UTC 2010
Modified Files:
othersrc/usr.bin/tnftp/libedit: Makefile.am
Log Message:
Distribute various files not shipped by default automake rules.
Use " $(SHELL) ./makelist" instead of "sh makelist".
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 othersrc/usr.bin/tnftp/libedit/Makefile.am
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: othersrc/usr.bin/tnftp/libedit/Makefile.am
diff -u othersrc/usr.bin/tnftp/libedit/Makefile.am:1.1 othersrc/usr.bin/tnftp/libedit/Makefile.am:1.2
--- othersrc/usr.bin/tnftp/libedit/Makefile.am:1.1 Sat Nov 14 08:32:42 2009
+++ othersrc/usr.bin/tnftp/libedit/Makefile.am Mon Jan 4 06:26:58 2010
@@ -1,4 +1,4 @@
-## $NetBSD: Makefile.am,v 1.1 2009/11/14 08:32:42 lukem Exp $
+## $NetBSD: Makefile.am,v 1.2 2010/01/04 06:26:58 lukem Exp $
noinst_LTLIBRARIES = libedit.la
@@ -7,8 +7,6 @@
common.c \
el.c \
emacs.c \
- fcns.c \
- help.c \
hist.c \
history.c \
key.c \
@@ -53,28 +51,51 @@
vi.h: vi.c
@echo "Create $@"
- sh makelist -h $(srcdir)/vi.c > $@
+ $(SHELL) ./makelist -h $(srcdir)/vi.c > $@
emacs.h: emacs.c
@echo "Create $@"
- sh makelist -h $(srcdir)/emacs.c > $@
+ $(SHELL) ./makelist -h $(srcdir)/emacs.c > $@
common.h: common.c
@echo "Create $@"
- sh makelist -h $(srcdir)/common.c > $@
+ $(SHELL) ./makelist -h $(srcdir)/common.c > $@
fcns.h: vi.h emacs.h common.h
@echo "Create $@"
- sh makelist -fh vi.h emacs.h common.h > $@
+ $(SHELL) ./makelist -fh vi.h emacs.h common.h > $@
fcns.c: vi.h emacs.h common.h fcns.h
@echo "Create $@"
- sh makelist -fc vi.h emacs.h common.h > $@
+ $(SHELL) ./makelist -fc vi.h emacs.h common.h > $@
help.c: vi.c emacs.c common.c
@echo "Create $@"
- sh makelist -bc $(srcdir)/vi.c $(srcdir)/emacs.c $(srcdir)/common.c > $@
+ $(SHELL) ./makelist -bc $(srcdir)/vi.c $(srcdir)/emacs.c $(srcdir)/common.c > $@
help.h: vi.c emacs.c common.c
@echo "Create $@"
- sh makelist -bh $(srcdir)/vi.c $(srcdir)/emacs.c $(srcdir)/common.c > $@
+ $(SHELL) ./makelist -bh $(srcdir)/vi.c $(srcdir)/emacs.c $(srcdir)/common.c > $@
+
+EXTRA_DIST = \
+ chared.h \
+ editline.3 \
+ editrc.5 \
+ el.h \
+ filecomplete.c \
+ filecomplete.h \
+ hist.h \
+ histedit.h \
+ key.h \
+ map.h \
+ parse.h \
+ prompt.h \
+ read.h \
+ readline.c \
+ readline/readline.h \
+ refresh.h \
+ search.h \
+ sig.h \
+ sys.h \
+ term.h \
+ tty.h