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