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