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