File: Makefile.am

package info (click to toggle)
posh 0.5.4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,996 kB
  • ctags: 1,587
  • sloc: ansic: 14,683; xml: 1,482; sh: 1,097; perl: 943; makefile: 102
file content (30 lines) | stat: -rw-r--r-- 901 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
AUTOMAKE_OPTIONS = foreign

bin_PROGRAMS = posh

posh_SOURCES = alloc.c c_test.c \
        eval.c exec.c expr.c history.c io.c jobs.c lex.c \
        main.c misc.c path.c shf.c syn.c table.c trap.c \
        tree.c tty.c var.c \
	src/builtins.c src/compat.c src/times.c \
	sh.h shf.h table.h tree.h expand.h lex.h proto.h \
	ksh_dir.h ksh_stat.h ksh_wait.h ksh_limval.h ksh_time.h \
	c_test.h conf-end.h edit.h tty.h \
	src/compat.h

man_MANS = posh.1

common_dep = $(top_srcdir)/configure.ac

#posh.1:   $(common_dep) $(srcdir)/posh.xml
#	LANG=C xmlto man $(srcdir)/posh.xml

EXTRA_DIST = siglist.in siglist.sh posh.xml $(man_MANS)
BUILT_SOURCES = siglist.out
DISTCLEANFILES = siglist.out

siglist.out: config.h sh.h siglist.in siglist.sh
	$(srcdir)/siglist.sh "$(CPP) $(CPPFLAGS) $(DEFS) -I. -I$(srcdir)" < $(srcdir)/siglist.in > tmpsiglist.out
	mv tmpsiglist.out siglist.out

SUBDIRS = . src tests