File: Makefile.am

package info (click to toggle)
chbg 0.8pl1-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 588 kB
  • ctags: 230
  • sloc: ansic: 4,304; sh: 1,964; makefile: 97
file content (32 lines) | stat: -rw-r--r-- 458 bytes parent folder | download
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
31
32

scriptdata =

SUBDIRS = @MSUBDIRS@

bin_PROGRAMS = chbg

chbg_SOURCES = \
	config.c \
	config.h \
	chbg.c \
	fnmatch.c \
	fnmatch.h \
	setup.c \
	xsssupport.c

chbg.pot: $(pavuk_SOURCES)
	xgettext --output=$@ --default-domain=chbg -n -E $(chbg_SOURCES)


dist_head:
	for i in $(chbg_SOURCES); do\
		grp=`grep Copyright $$i`;\
		if test "x$$grp" = "x"; then\
			cp header .tmp;\
			cat $$i >> .tmp;\
			touch --file=$$i .tmp;\
			mv .tmp $$i;\
		fi\
	done