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