temp-file: New functions for creating temporary files honoring $TMPDIR.
[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         clean-temp \
13         close \
14         configmake \
15         count-one-bits \
16         crc \
17         crypto/md4 \
18         dirname \
19         environ \
20         exit \
21         fatal-signal \
22         fcntl \
23         fpieee \
24         fprintf-posix \
25         full-read \
26         full-write \
27         fseeko \
28         ftello \
29         fwriteerror \
30         getline \
31         getopt \
32         gettext-h \
33         gettimeofday \
34         gitlog-to-changelog \
35         isfinite \
36         isinf \
37         isnan \
38         intprops \
39         inttostr \
40         localcharset \
41         mbchar \
42         memcasecmp \
43         memchr \
44         memcmp \
45         memmove \
46         mempcpy \
47         memset \
48         minmax \
49         mkdtemp \
50         mkstemp \
51         printf-posix \
52         printf-safe \
53         progname \
54         regex \
55         relocatable-prog \
56         rename \
57         round \
58         snprintf \
59         snprintf-posix \
60         sprintf-posix \
61         stdarg \
62         stdbool \
63         stdint \
64         stpcpy \
65         strcase \
66         strcspn \
67         strerror \
68         strftime \
69         strtod \
70         strtok_r \
71         strtol \
72         strtoul \
73         sys_stat \
74         tempname \
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         touch m4/Makefile.am
102         $(GNULIB_TOOL) --import --no-changelog --m4-base=gl/m4 \
103                 --source-base=gl --lib=libgl --tests-base=tests \
104                 --doc-base=gl/doc --aux-dir=build-aux --import \
105                 $(GNULIB_MODULES)
106         libtoolize --force --automake
107         aclocal -I m4 -I gl/m4
108         autoconf
109         autoheader
110         automake --add-missing --copy --no-force
111
112 gettextize:
113         test -d m4 || mkdir m4
114         touch m4/Makefile.am
115         gettextize --force --no-changelog
116
117 check: all
118         rm -rf _check
119         mkdir _check
120         cd _check && ../configure $(CONFIGUREFLAGS)
121         cd _check && make distcheck
122         rm -rf _check
123
124 _build: all
125         test -d _build || mkdir _build
126         cd _build && ../configure $(CONFIGUREFLAGS)
127
128 _debug: all
129         test -d _debug || mkdir _debug
130         cd _debug && ../configure $(CONFIGUREFLAGS) --enable-debug
131
132 PO_FILES = po/ChangeLog \
133 po/Rules-quot po/boldquot.sed           \
134 po/cat-id-tbl.c po/en@boldquot.header po/en@quot.header                 \
135 po/insert-header.sin po/quot.sed po/remove-potcdate.sin po/stamp-po     \
136 po/Makevars.template po/pspp.pot
137
138 clean:
139         rm -f config.sub config.guess config.rpath
140         rm -fr autom4te.cache
141         rm -f aclocal.m4
142         rm -f missing mkinstalldirs
143         rm -f install-sh
144         rm -f configure Makefile 
145         rm -f depcomp
146         rm -rf intl gl
147         rm -f m4/*.m4
148         rm -f $(PO_FILES) po/*.gmo 
149         rm -f mdate-sh texinfo.tex
150         rm -f doc/stamp-vti
151         rm -f config.h.in~
152         rm -f config.h.in
153         find . -name Makefile.in -exec rm -f {} \; 
154         rm -f compile
155         rm -f ltmain.sh
156         rm -f reloc-ldflags install-reloc
157
158 .PHONY: all gettextize clean