File: Makefile.am

package info (click to toggle)
posh 0.3.14
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,492 kB
  • ctags: 1,704
  • sloc: ansic: 15,481; xml: 1,555; perl: 943; sh: 897; makefile: 101
file content (29 lines) | stat: -rw-r--r-- 865 bytes parent folder | download | duplicates (2)
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
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
#	xmlto man $(srcdir)/posh.xml

EXTRA_DIST = siglist.in siglist.sh posh.xml $(man_MANS)
BUILT_SOURCES = 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