2957ac492d865085e2185e9200fc3535ccb6147b
[pspp-builds.git] / src / Makefile.am
1 ## Process this file with automake to produce Makefile.in  -*- makefile -*-
2
3 # PSPP
4
5 # If you change this, you must also change the corresponding line in 
6 # config/Makefile.am
7 pkgsysconfdir = $(sysconfdir)/@PACKAGE@
8
9 bin_PROGRAMS = pspp
10
11 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/src -I$(top_srcdir)/lib   \
12 -I$(top_srcdir)/intl
13
14 DISTCLEANFILES = foo $(q_sources_c)
15 MAINTAINERCLEANFILES = Makefile.in
16 EXTRA_DIST = $(q_sources_q) q2c.c
17 ETAGS_ARGS = -l c $(q_sources_c)
18 SUFFIXES = .q
19
20 $(q_sources_c): q2c$(EXEEXT)
21 .q.c:
22         ./q2c $< $@
23
24 q_sources_c = correlations.c crosstabs.c descript.c file-handle.c       \
25 frequencies.c list.c means.c set.c t-test.c
26
27 q_sources_q = correlations.q crosstabs.q descript.q file-handle.q       \
28 frequencies.q list.q means.q set.q t-test.q
29
30 pspp_SOURCES = aggregate.c algorithm.c algorithm.h alloc.c alloc.h      \
31 apply-dict.c approx.h ascii.c autorecode.c bitvector.h cases.c cases.h  \
32 cmdline.c command.c command.def command.h compute.c correlations.c      \
33 count.c crosstabs.c data-in.c data-in.h data-list.c data-out.c          \
34 debug-print.h descript.c dfm.c dfm.h do-if.c do-ifP.h error.c error.h   \
35 expr-evl.c expr-opt.c expr-prs.c expr.h exprP.h file-handle.c           \
36 file-handle.h file-type.c filename.c filename.h flip.c font.h format.c  \
37 format.def format.h formats.c frequencies.c get.c getline.c getline.h   \
38 glob.c groff-font.c hash.c hash.h heap.c heap.h html.c htmlP.h          \
39 include.c inpt-pgm.c inpt-pgm.h lexer.c lexer.h list.c log.h loop.c     \
40 magic.c magic.h main.c main.h matrix-data.c matrix.c matrix.h means.c   \
41 mis-val.c misc.c misc.h modify-vars.c numeric.c output.c output.h       \
42 pfm-read.c pfm-write.c pfm.h pool.c pool.h postscript.c print.c         \
43 random.c random.h recode.c rename-vars.c repeat.c sample.c sel-if.c     \
44 set.c settings.h sfm-read.c sfm-write.c sfm.h sfmP.h som.c som.h        \
45 sort.c sort.h split-file.c stat.h stats.c stats.h str.c str.h           \
46 sysfile-info.c tab.c tab.h temporary.c title.c t-test.c val-labs.c      \
47 value-labels.c value-labels.h var-labs.c var.h vars-atr.c vars-prs.c    \
48 vector.c vector.h version.c version.h vfm.c vfm.h vfmP.h weight.c
49
50 pspp_LDADD =    ../lib/julcal/libjulcal.a               \
51         ../lib/misc/libmisc.a                   \
52         ../lib/dcdflib/libdcdflib.a             \
53         @LIBINTL@
54
55 version.c:
56         echo "#include <config.h>" > version.c
57         echo "const char bare_version[] = \"@VERSION@\";" >> version.c
58         echo "const char version[] = \"GNU @PACKAGE@ @VERSION@\";" >> version.c
59         echo "const char stat_version[] = \"GNU @PACKAGE@ @VERSION@ \
60 (`date`).\";" >> version.c
61         echo "const char host_system[] = \"$(host_triplet)\";" >> version.c
62         echo "const char build_system[] = \"$(build_triplet)\";" >> version.c
63         echo "const char default_config_path[] =\
64 \"~/.pspp:$(pkgsysconfdir)\";" >> version.c
65         echo "const char include_path[] =\
66 \"./:~/.pspp/include:$(pkgdatadir)\";" >> version.c
67         echo "const char groff_font_path[] = \"~/.pspp/font:\" \\" >> version.c
68         echo "  \"$(pkgdatadir)/font:\" \\" >> version.c
69         echo "  \"/usr/local/lib/groff/font:\" \\" >> version.c
70         echo "  \"/usr/lib/groff/font:\" \\" >> version.c
71         echo "  \"/usr/local/share/groff/font:\" \\" >> version.c
72         echo "  \"/usr/share/groff/font\";" >> version.c
73         echo "const char locale_dir[] = \"$(datadir)/locale\";" >> version.c
74 \f
75
76 noinst_PROGRAMS = q2c
77 q2c_SOURCES = q2c.c