sparse-array: Improve iteration interface.
[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         argp \
9         assert \
10         byteswap \
11         c-ctype \
12         c-strtod \
13         close \
14         count-one-bits \
15         crypto/md4 \
16         dirname \
17         environ \
18         exit \
19         fatal-signal \
20         fcntl \
21         fpieee \
22         fprintf-posix \
23         full-read \
24         full-write \
25         fseeko \
26         ftello \
27         fwriteerror \
28         gethostname \
29         getline \
30         getlogin_r \
31         getopt \
32         gettext-h \
33         gettimeofday \
34         gitlog-to-changelog \
35         isfinite \
36         isinf \
37         isnan \
38         intprops \
39         inttostr \
40         localcharset \
41         mbchar \
42         memcasecmp \
43         memchr \
44         memcmp \
45         memmove \
46         mempcpy \
47         memset \
48         minmax \
49         mkstemp \
50         printf-posix \
51         printf-safe \
52         progname \
53         regex \
54         relocatable-prog \
55         rename \
56         round \
57         snprintf \
58         snprintf-posix \
59         sprintf-posix \
60         stdarg \
61         stdbool \
62         stdint \
63         stpcpy \
64         strcase \
65         strcspn \
66         strerror \
67         strftime \
68         strsep \
69         strtod \
70         strtok_r \
71         strtol \
72         strtoul \
73         sys_stat \
74         tempname \
75         tmpfile \
76         trunc \
77         unilbrk/ulc-width-linebreaks \
78         unistd \
79         unlocked-io \
80         vasprintf-posix \
81         vfprintf-posix \
82         vprintf-posix \
83         vsnprintf \
84         vsnprintf-posix \
85         vsprintf-posix \
86         xalloc \
87         xalloc-die \
88         xmalloca \
89         xsize \
90         xstrndup \
91         xvasprintf
92
93 all: po/POTFILES.in
94         test -e ChangeLog || touch ChangeLog
95         test -d m4 || mkdir m4
96         echo '*' > m4/.cvsignore
97         touch m4/Makefile.am
98         $(GNULIB_TOOL) --import --no-changelog --m4-base=gl/m4 \
99                 --source-base=gl --lib=libgl --tests-base=tests \
100                 --doc-base=gl/doc --aux-dir=. --import $(GNULIB_MODULES)
101         echo '*' > gl/.cvsignore
102         echo '*' > gl/m4/.cvsignore
103         libtoolize --force --automake
104         autopoint --force
105         aclocal -I m4 -I gl/m4
106         autoconf
107         autoheader
108         automake --add-missing --copy --no-force
109
110 gettextize:
111         test -d m4 || mkdir m4
112         touch m4/Makefile.am
113         gettextize --force --no-changelog
114
115 po/POTFILES.in:
116         for f in `find src \( -name \*.[qc] -o -name \*.glade \) ! -name .\* -print` ; do \
117                 if test $$f = src/libpspp/version.c; then continue; fi;   \
118                 if test $$f = src/ui/gui/psppire-marshal.c; then continue; fi; \
119                 if test -e `dirname $$f`/`basename $$f .c`.q ; then continue; fi; \
120                 echo $$f ; \
121         done | sort | uniq > $@.tmp
122         if test ! -e $@ || ! cmp -s $@.tmp $@; then mv $@.tmp $@; fi
123         rm -f $@.tmp
124
125 check: all
126         rm -rf _check
127         mkdir _check
128         cd _check && ../configure $(CONFIGUREFLAGS)
129         cd _check && make distcheck
130         rm -rf _check
131
132 _build: all
133         test -d _build || mkdir _build
134         cd _build && ../configure $(CONFIGUREFLAGS)
135
136 _debug: all
137         test -d _debug || mkdir _debug
138         cd _debug && ../configure $(CONFIGUREFLAGS) --enable-debug
139
140 PO_FILES = po/ChangeLog po/Makefile po/Makefile.in po/Makefile.in.in    \
141 po/POTFILES po/POTFILES.in po/Rules-quot po/boldquot.sed                \
142 po/cat-id-tbl.c po/en@boldquot.header po/en@quot.header                 \
143 po/insert-header.sin po/quot.sed po/remove-potcdate.sin po/stamp-po     \
144 po/Makevars.template po/pspp.pot
145
146 clean:
147         rm -f config.sub config.guess config.rpath
148         rm -f ABOUT-NLS
149         rm -fr autom4te.cache
150         rm -f aclocal.m4
151         rm -f missing mkinstalldirs
152         rm -f install-sh
153         rm -f configure Makefile 
154         rm -f depcomp
155         rm -rf intl gl
156         rm -f m4/*.m4
157         rm -f $(PO_FILES) po/*.gmo 
158         rm -f mdate-sh texinfo.tex
159         rm -f doc/stamp-vti
160         rm -f config.h.in~
161         rm -f config.h.in
162         find . -name Makefile.in -exec rm -f {} \; 
163         rm -f compile
164         rm -f ltmain.sh
165         rm -f reloc-ldflags install-reloc
166
167 .PHONY: all gettextize potfiles clean