Fixed problem deallocating iconv structs.
[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         alloca \
9         alloca-opt \
10         assert \
11         c-ctype \
12         c-strtod \
13         exit \
14         full-read \
15         full-write \
16         gethostname \
17         getline \
18         getlogin_r \
19         getopt \
20         gettext \
21         intprops \
22         linebreak \
23         localcharset \
24         memcasecmp \
25         memchr \
26         memcmp \
27         memmem \
28         memmove \
29         memset \
30         progname \
31         readlink \
32         restrict \
33         snprintf \
34         stat-macros \
35         stdarg \
36         stdbool \
37         stdint \
38         stpcpy \
39         strcase \
40         strcspn \
41         strerror \
42         strftime \
43         strsep \
44         strstr \
45         strtod \
46         strtok_r \
47         strtol \
48         strtoul \
49         unistd \
50         vsnprintf \
51         xalloc \
52         xalloc-die \
53         xreadlink \
54         xstrndup \
55         xvasprintf
56
57 all: po/POTFILES.in
58         test -d m4 || mkdir m4
59         touch m4/Makefile.am
60         $(GNULIB_TOOL) --import --no-changelog --m4-base=gl/m4 \
61                 --source-base=gl --lib=libgl --tests-base=tests \
62                 --import $(GNULIB_MODULES)
63         autopoint --force
64         aclocal -I m4 -I gl/m4
65         autoconf
66         autoheader
67         automake --add-missing --copy --no-force
68
69 gettextize:
70         test -d m4 || mkdir m4
71         touch m4/Makefile.am
72         gettextize -f -c --intl --no-changelog
73
74 po/POTFILES.in:
75         for f in `find src \( -name \*.[qc] -o -name \*.glade \) ! -name .\* -print` ; do \
76                 if test $$f = src/libpspp/version.c; then continue; fi;   \
77                 if test -e `dirname $$f`/`basename $$f .c`.q ; then continue; fi; \
78                 echo $$f ; \
79         done | sort | uniq > $@.tmp
80         if test ! -e $@ || ! cmp -s $@.tmp $@; then mv $@.tmp $@; fi
81         rm -f $@.tmp
82
83 check: all
84         rm -rf _check
85         mkdir _check
86         cd _check && ../configure $(CONFIGUREFLAGS)
87         cd _check && make distcheck
88         rm -rf _check
89
90 _build: all
91         test -d _build || mkdir _build
92         cd _build && ../configure $(CONFIGUREFLAGS)
93
94 PO_FILES = po/ChangeLog po/Makefile po/Makefile.in po/Makefile.in.in    \
95 po/POTFILES po/POTFILES.in po/Rules-quot po/boldquot.sed                \
96 po/cat-id-tbl.c po/en@boldquot.header po/en@quot.header                 \
97 po/insert-header.sin po/quot.sed po/remove-potcdate.sin po/stamp-po     \
98 po/Makevars.template po/pspp.pot
99
100 clean:
101         rm -f config.sub config.guess config.rpath
102         rm -f ABOUT-NLS
103         rm -fr autom4te.cache
104         rm -f aclocal.m4
105         rm -f missing mkinstalldirs
106         rm -f install-sh
107         rm -f configure Makefile 
108         rm -f depcomp
109         rm -rf intl gl
110         rm -f m4/*.m4
111         rm -f $(PO_FILES) po/*.gmo 
112         rm -f mdate-sh texinfo.tex
113         rm -f doc/stamp-vti
114         rm -f config.h.in~
115         find . -name Makefile.in -exec rm -f {} \; 
116         rm -f compile
117
118 .PHONY: all gettextize potfiles clean