Adopt use of gnulib for portability.
[pspp-builds.git] / Smake
1 # -*- makefile -*-
2
3 GNULIB = ../gnulib
4 GNULIB_TOOL = $(GNULIB)/gnulib-tool
5
6 all: po/POTFILES.in
7         $(GNULIB_TOOL) --import
8         autoreconf --install
9
10 gettextize:
11         touch m4/Makefile.am
12         gettextize -f -c --intl --no-changelog
13
14 po/POTFILES.in:
15         for f in `find src -name \*.[qc] -print | sed 's/\.[qc]$$//'`; do \
16                 if test $$f = src/version.c; then break; fi;              \
17                 if test -e $$f.q; then echo $$f.q; else echo $$f.c; fi    \
18         done | sort | uniq > $@.tmp
19         if test ! -e $@ || ! cmp -s $@.tmp $@; then mv $@.tmp $@; fi
20         rm -f $@.tmp
21
22 PO_FILES = po/ChangeLog po/Makefile po/Makefile.in po/Makefile.in.in    \
23 po/POTFILES po/POTFILES.in po/Rules-quot po/boldquot.sed                \
24 po/cat-id-tbl.c po/en@boldquot.header po/en@quot.header                 \
25 po/insert-header.sin po/quot.sed po/remove-potcdate.sin po/stamp-po     \
26 po/Makevars.template
27
28 clean:
29         rm -f config.sub config.guess config.rpath
30         rm -f ABOUT-NLS
31         rm -fr autom4te.cache
32         rm -f aclocal.m4
33         rm -f missing mkinstalldirs
34         rm -f install-sh
35         rm -f configure Makefile Makefile.in
36         rm -f depcomp
37         rm -fr intl gl
38         rm -f m4/*.m4
39         rm -f $(PO_FILES)
40
41 .PHONY: all gettextize potfiles clean