File: Makefile.am

package info (click to toggle)
gimp 1.0.2-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 17,116 kB
  • ctags: 16,070
  • sloc: ansic: 226,067; lisp: 8,497; sh: 4,965; makefile: 4,543
file content (35 lines) | stat: -rw-r--r-- 989 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
30
31
32
33
34
35
EXTRA_DIST = \
	gimp.txt	 		pdb_self_doc.el \
	pdb_dump 			xcf.doc \
	cheat_sheet.txt			keybindings.txt \
	texinfo.tex 			script-fu.tex \
	architecture.eps	 	logo.eps \
	net-fu.eps 			timeline.eps \
	pdb_dump.texi			gimp_quick_reference.ps \
	gimp_quick_reference.tar.gz

BUILT_SOURCES = pdb_dump.texi

info_TEXINFOS = pdb.texi
pdb_TEXINFOS = pdb_dump.texi

pdb_dump.texi: $(srcdir)/pdb_self_doc.el $(srcdir)/pdb_dump
	cd $(srcdir) && \
	@EMACS@ --batch -l pdb_self_doc.el -f make-docs-noargs

## use `cp' followed by `rm' since `mv' may not be able to move across mount pts
$(srcdir)/pdb_dump: $(top_srcdir)/app/*.c
	$(top_builddir)/app/gimp --no-interface --batch '(gimp-procedural-db-dump "pdb_dump.tmp")' '(gimp-quit 0)' 
	cp pdb_dump.tmp $(srcdir)/pdb_dump
	-rm -f pdb_dump.tmp

script-fu.ps: script-fu.dvi
	dvips -f script-fu.dvi > script-fu.ps

script-fu.dvi:
	latex script-fu.tex

files:
	@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files macros/*; do \
	  echo $$p; \
	done