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