Use LinkableValueNode members functions when possible in the derived valuenodes.
[synfig.git] / ETL / Makefile.am
1 # $Id$
2
3 MAINTAINERCLEANFILES = \
4         COPYING \
5         INSTALL \
6         config/config.guess \
7         config/config.sub \
8         config/ltmain.sh \
9         config/install-sh \
10         config/mkinstalldirs \
11         config/aclocal.m4 \
12         config/missing \
13         config/texinfo.tex \
14         config/depcomp \
15         aclocal.m4 \
16         config.h.in \
17         configure \
18         stamp-h.in \
19         Makefile.in \
20         config.log \
21         config.status \
22         .doc_stamp \
23         .DS_Store \
24         include/etl_profile.h.in \
25         doxygen.cfg
26
27
28 SUBDIRS = \
29         ETL \
30         test
31
32
33 # Install the pkg-config file:
34 pkgconfigdir = $(libdir)/pkgconfig
35 pkgconfig_DATA = ETL.pc
36
37 #Install the -config/m4 alternative to pkg-config:
38 bin_SCRIPTS = ETL-config
39
40 aclocaldir = $(prefix)/share/aclocal
41 ACLOCAL_AMFLAGS = -I m4
42
43 EXTRA_DIST = \
44         COPYING \
45         m4/subs.m4 \
46         config/depcomp \
47         m4/cxx_macros.m4 \
48         ETL.pbproj/project.pbxproj \
49         ETL.pbproj/etl_profile.h \
50         ETL.pbproj/frameworkfix.cpp \
51         ETL-config.in \
52         m4/ETL.m4 \
53         doxygen.cfg.in \
54         doxygen.cfg \
55         ETL.pc.in
56
57
58 SVN=svn
59 TAG=@PACKAGE_TARNAME@_@VERSION_MAJ@_@VERSION_MIN@_@VERSION_REV@
60
61 GREP=grep
62
63 PRINTF=printf
64
65 SH=sh
66
67 DOXYGEN=doxygen
68
69 stats:
70         -@echo
71         -@echo  -- Stats
72         -@echo
73         -@$(PRINTF) "Total lines: "
74         -@wc -l $(shell find $(top_srcdir)/ETL -name '*.[ch]*') | $(GREP) total
75         -@$(PRINTF) "Total size: "
76         -@du -hcs $(shell find $(top_srcdir)/ETL -name '*.[ch]*') | $(GREP) total
77         -@echo 
78
79 ChangeLog:
80         ../autobuild/git2cl > ChangeLog
81
82 listfixmes:
83         -@echo
84         -@echo  -- List of pending FIXMEs
85         -@echo
86         -@$(GREP) FIXME -n $(shell find $(top_srcdir) -name '*.[ch]*')
87         -@echo
88
89 listhacks:
90         -@echo
91         -@echo  -- List of pending HACKs
92         -@echo
93         -@$(GREP) HACK -n $(shell find $(top_srcdir) -name '*.[ch]*')
94         -@echo
95
96 run: check
97
98 .doc_stamp: doxygen.cfg
99         $(DOXYGEN) doxygen.cfg
100         touch .doc_stamp
101
102 html: .doc_stamp
103
104 rtf: .doc_stamp
105
106 docs: html
107
108 .PHONY: stats listfixmes listhacks check docs pdf html rtf