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