Implemented long variable names a la spss V12.
[pspp-builds.git] / src / Makefile.am
1 ## Process this file with automake to produce Makefile.in  -*- makefile -*-
2
3 # PSPP
4
5 include $(top_srcdir)/src/Make.build
6
7 SUBDIRS = expressions
8
9 # If you change this, you must also change the corresponding line in 
10 # config/Makefile.am
11 pkgsysconfdir = $(sysconfdir)/@PACKAGE@
12
13 bin_PROGRAMS = pspp
14
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 examine.c file-handle.c        \
25 frequencies.c list.c means.c oneway.c set.c  t-test.c 
26
27 CLEANFILES=$(q_sources_c)
28 DISTCLEANFILES=version.c
29
30 q_sources_q = correlations.q crosstabs.q examine.q file-handle.q        \
31 frequencies.q list.q means.q oneway.q set.q  t-test.q
32
33 if WITHCHARTS
34 chart_sources = barchart.c \
35         box-whisker.c \
36         cartesian.c \
37         plot-chart.c \
38         plot-hist.c \
39         piechart.c 
40 else
41 chart_sources = dummy-chart.c
42 endif
43
44 pspp_SOURCES = $(q_sources_c) $(chart_sources) \
45 aggregate.c algorithm.c algorithm.h     \
46 alloc.c alloc.h apply-dict.c ascii.c autorecode.c bitvector.h           \
47 bool.h \
48 calendar.c calendar.h case.c case.h casefile.c casefile.h chart.c       \
49 chart.h cmdline.c cmdline.h command.c command.def \
50 command.h compute.c copyleft.c copyleft.h count.c data-in.c data-in.h   \
51 data-list.c data-list.h data-out.c date.c debug-print.h descript.c      \
52 devind.c devind.h dfm-read.c dfm-read.h dfm-write.c dfm-write.h \
53 dictionary.c dictionary.h do-if.c do-ifP.h error.c \
54 error.h factor_stats.c factor_stats.h file-handle.h     \
55 file-type.c filename.c filename.h flip.c font.h format.c format.def     \
56 format.h formats.c get.c getline.c getline.h glob.c glob.h              \
57 groff-font.c group.c group.h group_proc.h \
58 hash.c hash.h histogram.c histogram.h \
59 html.c htmlP.h include.c inpt-pgm.c lexer.c lexer.h levene.c levene.h \
60 linked-list.c linked-list.h log.h loop.c magic.c magic.h main.c main.h  \
61 matrix-data.c mis-val.c misc.c misc.h modify-vars.c                     \
62 moments.c moments.h numeric.c output.c output.h \
63 percentiles.c percentiles.h permissions.c \
64 pfm-read.c pfm-read.h   \
65 pfm-write.c pfm-write.h \
66 pool.c pool.h postscript.c print.c recode.c     \
67 rename-vars.c repeat.c repeat.h sample.c sel-if.c settings.h            \
68 sfm-read.c sfm-read.h sfm-write.c sfm-write.h sfmP.h som.c som.h        \
69 sort.c sort.h split-file.c str.c str.h subclist.c subclist.h \
70 sysfile-info.c tab.c tab.h temporary.c stat.h mkfile.c mkfile.h \
71 title.c  val.h val-labs.c value-labels.c value-labels.h         \
72 var-display.c \
73 var-labs.c var.h vars-atr.c vars-prs.c vector.c version.h       \
74 vfm.c vfm.h vfmP.h weight.c 
75
76
77 pspp_LDADD = \
78         ../lib/misc/libmisc.a                   \
79         expressions/libexpressions.a            \
80         ../lib/gsl-extras/libgsl-extras.a       \
81         -lplot \
82         @LIBINTL@
83
84 nodist_pspp_SOURCES = version.c
85
86 version.c:
87         echo "#include <config.h>" > version.c
88         echo "#include \"version.h\"" > version.c
89         echo "const char bare_version[] = \"@VERSION@\";" >> version.c
90         echo "const char version[] = \"GNU @PACKAGE@ @VERSION@\";" >> version.c
91         echo "const char stat_version[] = \"GNU @PACKAGE@ @VERSION@ \
92 (`date`).\";" >> version.c
93         echo "const char host_system[] = \"$(host_triplet)\";" >> version.c
94         echo "const char build_system[] = \"$(build_triplet)\";" >> version.c
95         echo "const char default_config_path[] =\
96 \"~/.pspp:$(pkgsysconfdir)\";" >> version.c
97         echo "const char include_path[] =\
98 \"./:~/.pspp/include:$(pkgdatadir)\";" >> version.c
99         echo "const char groff_font_path[] = \"~/.pspp/font:\" \\" >> version.c
100         echo "  \"$(pkgdatadir)/font:\" \\" >> version.c
101         echo "  \"/usr/local/lib/groff/font:\" \\" >> version.c
102         echo "  \"/usr/lib/groff/font:\" \\" >> version.c
103         echo "  \"/usr/local/share/groff/font:\" \\" >> version.c
104         echo "  \"/usr/share/groff/font\";" >> version.c
105         echo "const char locale_dir[] = \"$(datadir)/locale\";" >> version.c
106 \f
107
108 noinst_PROGRAMS = q2c
109 q2c_SOURCES = q2c.c