From a809bc0f49ee4c6e777f39d1f80ee57862a0fcab Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Wed, 1 Apr 2026 22:24:22 +0200 Subject: Initial import of the code into git --- src/Makefile.am | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/Makefile.am (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..b9463d4 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,18 @@ +bin_PROGRAMS = aplwc +dist_man_MANS = aplwc.1 + +aplwc_SOURCES = \ + main.c \ + nls.h \ + readline.c \ + readline.h \ + syscmd.c \ + syscmd.h + +aplwc_CPPFLAGS = $(READLINE_CFLAGS) -DLOCALEDIR=\"$(localedir)\" -I$(top_srcdir)/lib -I$(top_srcdir)/gnu -I$(top_builddir)/gnu +aplwc_LDADD = $(LTLIBINTL) ../lib/libaplwc.la ../gnu/libgnu.la $(READLINE_LIBS) + +CLEANFILES = aplwc.1 + +aplwc.1: aplwc + $(AM_V_GEN)help2man --output=$@ $(top_builddir)/src/aplwc$(EXEEXT) -- cgit v1.2.3