File: Makefile.am

package info (click to toggle)
eb 4.4.3-14.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,060 kB
  • sloc: ansic: 22,725; sh: 10,130; perl: 1,114; makefile: 706
file content (24 lines) | stat: -rw-r--r-- 791 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
noinst_LIBRARIES = libebutils.a
libebutils_a_SOURCES = ebutils.c getopt.c getumask.c makedir.c puts_eucjp.c \
	samefile.c strlist.c yesno.c
libebutils_a_LIBADD = @LIBOBJS@

dist_noinst_HEADERS = getopt.h getumask.h makedir.h samefile.h strlist.h \
	yesno.h
nodist_noinst_HEADERS = ebutils.h

EXTRA_DIST = getopt_long.pl ebutils.h.in
CLEANFILES = stamp-ebutils-h ebutils.h
BUILT_SOURCES = ebutils.h

INCLUDES = -I$(top_srcdir) @INTLINCS@ @ICONVINCS@

ebutils.h: stamp-ebutils-h
stamp-ebutils-h: ebutils.h.in Makefile
	rm -f ebutils.h.tmp
	echo '/* automatically generated from ebutils.h.in. */' \
	   > ebutils.h.tmp
	sed -e 's;\@localedir\@;$(localedir);' \
	   $(srcdir)/ebutils.h.in >> ebutils.h.tmp
	$(top_srcdir)/move-if-change ebutils.h.tmp ebutils.h
	@echo timestamp > stamp-ebutils-h