* Makefile.am (AUTOMAKE_OPTIONS): Require Automake 1.10 (or
[pspp-builds.git] / Smake
1 # -*- makefile -*-
2
3 # Adjust these to reflect where you've installed gnulib.
4 GNULIB = ../gnulib
5 GNULIB_TOOL = $(GNULIB)/gnulib-tool
6
7 GNULIB_MODULES = \
8         alloca \
9         alloca-opt \
10         assert \
11         byteswap \
12         c-ctype \
13         c-strtod \
14         dirname \
15         exit \
16         full-read \
17         full-write \
18         gethostname \
19         getline \
20         getlogin_r \
21         getopt \
22         gettext-h \
23         intprops \
24         inttostr \
25         linebreak \
26         localcharset \
27         mbchar \
28         memcasecmp \
29         memchr \
30         memcmp \
31         memmem \
32         memmove \
33         mempcpy \
34         memset \
35         minmax \
36         mkstemp \
37         progname \
38         snprintf \
39         stdarg \
40         stdbool \
41         stdint \
42         stpcpy \
43         strcase \
44         strcspn \
45         strerror \
46         strftime \
47         strsep \
48         strtod \
49         strtok_r \
50         strtol \
51         strtoul \
52         sys_stat \
53         tmpfile \
54         unistd \
55         unlocked-io \
56         vsnprintf \
57         xalloc \
58         xalloc-die \
59         xsize \
60         xstrndup \
61         xvasprintf
62
63 all: po/POTFILES.in
64         test -d m4 || mkdir m4
65         echo '*' > m4/.cvsignore
66         touch m4/Makefile.am
67         $(GNULIB_TOOL) --import --no-changelog --m4-base=gl/m4 \
68                 --source-base=gl --lib=libgl --tests-base=tests \
69                 --doc-base=gl/doc --import $(GNULIB_MODULES)
70         echo '*' > gl/.cvsignore
71         echo '*' > gl/m4/.cvsignore
72         libtoolize --force --automake
73         autopoint --force
74         aclocal -I m4 -I gl/m4
75         autoconf
76         autoheader
77         automake --add-missing --copy --no-force
78
79 gettextize:
80         test -d m4 || mkdir m4
81         touch m4/Makefile.am
82         gettextize --force --no-changelog
83
84 po/POTFILES.in:
85         for f in `find src \( -name \*.[qc] -o -name \*.glade \) ! -name .\* -print` ; do \
86                 if test $$f = src/libpspp/version.c; then continue; fi;   \
87                 if test -e `dirname $$f`/`basename $$f .c`.q ; then continue; fi; \
88                 echo $$f ; \
89         done | sort | uniq > $@.tmp
90         if test ! -e $@ || ! cmp -s $@.tmp $@; then mv $@.tmp $@; fi
91         rm -f $@.tmp
92
93 check: all
94         rm -rf _check
95         mkdir _check
96         cd _check && ../configure $(CONFIGUREFLAGS)
97         cd _check && make distcheck
98         rm -rf _check
99
100 _build: all
101         test -d _build || mkdir _build
102         cd _build && ../configure $(CONFIGUREFLAGS)
103
104 _debug: all
105         test -d _debug || mkdir _debug
106         cd _debug && ../configure $(CONFIGUREFLAGS) --enable-debug
107
108 PO_FILES = po/ChangeLog po/Makefile po/Makefile.in po/Makefile.in.in    \
109 po/POTFILES po/POTFILES.in po/Rules-quot po/boldquot.sed                \
110 po/cat-id-tbl.c po/en@boldquot.header po/en@quot.header                 \
111 po/insert-header.sin po/quot.sed po/remove-potcdate.sin po/stamp-po     \
112 po/Makevars.template po/pspp.pot
113
114 clean:
115         rm -f config.sub config.guess config.rpath
116         rm -f ABOUT-NLS
117         rm -fr autom4te.cache
118         rm -f aclocal.m4
119         rm -f missing mkinstalldirs
120         rm -f install-sh
121         rm -f configure Makefile 
122         rm -f depcomp
123         rm -rf intl gl
124         rm -f m4/*.m4
125         rm -f $(PO_FILES) po/*.gmo 
126         rm -f mdate-sh texinfo.tex
127         rm -f doc/stamp-vti
128         rm -f config.h.in~
129         rm -f config.h.in
130         find . -name Makefile.in -exec rm -f {} \; 
131         rm -f compile
132         rm -f ltmain.sh
133
134 .PHONY: all gettextize potfiles clean