Use the replacement rename function 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         assert \
9         byteswap \
10         c-ctype \
11         c-strtod \
12         close \
13         crypto/md4 \
14         dirname \
15         environ \
16         exit \
17         fatal-signal \
18         fcntl \
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         rename \
54         round \
55         snprintf \
56         snprintf-posix \
57         sprintf-posix \
58         stdarg \
59         stdbool \
60         stdint \
61         stpcpy \
62         strcase \
63         strcspn \
64         strerror \
65         strftime \
66         strsep \
67         strtod \
68         strtok_r \
69         strtol \
70         strtoul \
71         sys_stat \
72         tempname \
73         tmpfile \
74         trunc \
75         unilbrk/ulc-width-linebreaks \
76         unistd \
77         unlocked-io \
78         vasprintf-posix \
79         vfprintf-posix \
80         vprintf-posix \
81         vsnprintf \
82         vsnprintf-posix \
83         vsprintf-posix \
84         xalloc \
85         xalloc-die \
86         xmalloca \
87         xsize \
88         xstrndup \
89         xvasprintf
90
91 all: po/POTFILES.in
92         test -e ChangeLog || touch ChangeLog
93         test -d m4 || mkdir m4
94         echo '*' > m4/.cvsignore
95         touch m4/Makefile.am
96         $(GNULIB_TOOL) --import --no-changelog --m4-base=gl/m4 \
97                 --source-base=gl --lib=libgl --tests-base=tests \
98                 --doc-base=gl/doc --aux-dir=. --import $(GNULIB_MODULES)
99         echo '*' > gl/.cvsignore
100         echo '*' > gl/m4/.cvsignore
101         libtoolize --force --automake
102         autopoint --force
103         aclocal -I m4 -I gl/m4
104         autoconf
105         autoheader
106         automake --add-missing --copy --no-force
107
108 gettextize:
109         test -d m4 || mkdir m4
110         touch m4/Makefile.am
111         gettextize --force --no-changelog
112
113 po/POTFILES.in:
114         for f in `find src \( -name \*.[qc] -o -name \*.glade \) ! -name .\* -print` ; do \
115                 if test $$f = src/libpspp/version.c; then continue; fi;   \
116                 if test -e `dirname $$f`/`basename $$f .c`.q ; then continue; fi; \
117                 echo $$f ; \
118         done | sort | uniq > $@.tmp
119         if test ! -e $@ || ! cmp -s $@.tmp $@; then mv $@.tmp $@; fi
120         rm -f $@.tmp
121
122 check: all
123         rm -rf _check
124         mkdir _check
125         cd _check && ../configure $(CONFIGUREFLAGS)
126         cd _check && make distcheck
127         rm -rf _check
128
129 _build: all
130         test -d _build || mkdir _build
131         cd _build && ../configure $(CONFIGUREFLAGS)
132
133 _debug: all
134         test -d _debug || mkdir _debug
135         cd _debug && ../configure $(CONFIGUREFLAGS) --enable-debug
136
137 PO_FILES = po/ChangeLog po/Makefile po/Makefile.in po/Makefile.in.in    \
138 po/POTFILES po/POTFILES.in po/Rules-quot po/boldquot.sed                \
139 po/cat-id-tbl.c po/en@boldquot.header po/en@quot.header                 \
140 po/insert-header.sin po/quot.sed po/remove-potcdate.sin po/stamp-po     \
141 po/Makevars.template po/pspp.pot
142
143 clean:
144         rm -f config.sub config.guess config.rpath
145         rm -f ABOUT-NLS
146         rm -fr autom4te.cache
147         rm -f aclocal.m4
148         rm -f missing mkinstalldirs
149         rm -f install-sh
150         rm -f configure Makefile 
151         rm -f depcomp
152         rm -rf intl gl
153         rm -f m4/*.m4
154         rm -f $(PO_FILES) po/*.gmo 
155         rm -f mdate-sh texinfo.tex
156         rm -f doc/stamp-vti
157         rm -f config.h.in~
158         rm -f config.h.in
159         find . -name Makefile.in -exec rm -f {} \; 
160         rm -f compile
161         rm -f ltmain.sh
162         rm -f reloc-ldflags install-reloc
163
164 .PHONY: all gettextize potfiles clean