Move auxiliary files used for build into "build-aux" directory.
[pspp] / 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         configmake \
14         count-one-bits \
15         crc \
16         crypto/md4 \
17         dirname \
18         environ \
19         exit \
20         fatal-signal \
21         fcntl \
22         fpieee \
23         fprintf-posix \
24         full-read \
25         full-write \
26         fseeko \
27         ftello \
28         fwriteerror \
29         getline \
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         mkdtemp \
49         mkstemp \
50         printf-posix \
51         printf-safe \
52         progname \
53         regex \
54         relocatable-prog \
55         rename \
56         round \
57         snprintf \
58         snprintf-posix \
59         sprintf-posix \
60         stdarg \
61         stdbool \
62         stdint \
63         stpcpy \
64         strcase \
65         strcspn \
66         strerror \
67         strftime \
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         unistr/u8-cpy \
79         unistr/u8-strlen \
80         unistr/u8-strncat \
81         unlocked-io \
82         vasprintf-posix \
83         version-etc \
84         version-etc-fsf \
85         vfprintf-posix \
86         vprintf-posix \
87         vsnprintf \
88         vsnprintf-posix \
89         vsprintf-posix \
90         xalloc \
91         xalloc-die \
92         xmalloca \
93         xmemdup0 \
94         xsize \
95         xstrndup \
96         xvasprintf
97
98 all: 
99         test -e ChangeLog || touch ChangeLog
100         test -d m4 || mkdir m4
101         echo '*' > m4/.cvsignore
102         touch m4/Makefile.am
103         $(GNULIB_TOOL) --import --no-changelog --m4-base=gl/m4 \
104                 --source-base=gl --lib=libgl --tests-base=tests \
105                 --doc-base=gl/doc --aux-dir=build-aux --import \
106                 $(GNULIB_MODULES)
107         echo '*' > gl/.cvsignore
108         echo '*' > gl/m4/.cvsignore
109         libtoolize --force --automake
110         aclocal -I m4 -I gl/m4
111         autoconf
112         autoheader
113         automake --add-missing --copy --no-force
114
115 gettextize:
116         test -d m4 || mkdir m4
117         touch m4/Makefile.am
118         gettextize --force --no-changelog
119
120 check: all
121         rm -rf _check
122         mkdir _check
123         cd _check && ../configure $(CONFIGUREFLAGS)
124         cd _check && make distcheck
125         rm -rf _check
126
127 _build: all
128         test -d _build || mkdir _build
129         cd _build && ../configure $(CONFIGUREFLAGS)
130
131 _debug: all
132         test -d _debug || mkdir _debug
133         cd _debug && ../configure $(CONFIGUREFLAGS) --enable-debug
134
135 PO_FILES = po/ChangeLog \
136 po/Rules-quot po/boldquot.sed           \
137 po/cat-id-tbl.c po/en@boldquot.header po/en@quot.header                 \
138 po/insert-header.sin po/quot.sed po/remove-potcdate.sin po/stamp-po     \
139 po/Makevars.template po/pspp.pot
140
141 clean:
142         rm -f config.sub config.guess config.rpath
143         rm -fr autom4te.cache
144         rm -f aclocal.m4
145         rm -f missing mkinstalldirs
146         rm -f install-sh
147         rm -f configure Makefile 
148         rm -f depcomp
149         rm -rf intl gl
150         rm -f m4/*.m4
151         rm -f $(PO_FILES) po/*.gmo 
152         rm -f mdate-sh texinfo.tex
153         rm -f doc/stamp-vti
154         rm -f config.h.in~
155         rm -f config.h.in
156         find . -name Makefile.in -exec rm -f {} \; 
157         rm -f compile
158         rm -f ltmain.sh
159         rm -f reloc-ldflags install-reloc
160
161 .PHONY: all gettextize clean