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