File: Makefile.am

package info (click to toggle)
qprof 0.5.1-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,652 kB
  • ctags: 307
  • sloc: sh: 8,446; ansic: 2,900; makefile: 123; csh: 2
file content (12 lines) | stat: -rw-r--r-- 307 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
EXTRA_DIST=alias_proto.csh alias_proto.sh qprof.in
CLEANFILES = $(bin_SCRIPTS)

bin_SCRIPTS=qprof

do_subst = sed -e 's,[@]datadir[@],$(datadir),g' \
 -e 's,[@]libdir[@],$(libdir),g' 

#match anything with anything .in, run the sed rule above over it.
%: %.in 
	$(do_subst) < $(srcdir)/$< > $@
	chmod +x $@