]> www.ginac.de Git - ginac.git/blob - ginac/Makefile.am
documentation update
[ginac.git] / ginac / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 lib_LTLIBRARIES = libginac.la
4 libginac_la_SOURCES = add.cpp archive.cpp basic.cpp constant.cpp ex.cpp \
5   expair.cpp expairseq.cpp exprseq.cpp fail.cpp function.cpp inifcns.cpp \
6   inifcns_trans.cpp inifcns_zeta.cpp inifcns_gamma.cpp inifcns_nstdsums.cpp \
7   matrix.cpp mul.cpp normal.cpp numeric.cpp operators.cpp power.cpp \
8   registrar.cpp relational.cpp symbol.cpp pseries.cpp utils.cpp ncmul.cpp \
9   structure.cpp exprseq_suppl.cpp lst.cpp lst_suppl.cpp input_parser.yy \
10   input_lexer.ll input_lexer.h remember.h remember.cpp utils.h idx.cpp \
11   indexed.cpp tensor.cpp color.cpp clifford.cpp wildcard.cpp print.cpp \
12   symmetry.cpp fderivative.cpp tostring.h
13 libginac_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
14   -release $(LT_RELEASE)
15 ginacincludedir = $(includedir)/ginac
16 ginacinclude_HEADERS = ginac.h add.h archive.h basic.h constant.h ex.h \
17   expair.h expairseq.h exprseq.h fail.h flags.h function.h hash_map.h \
18   inifcns.h lst.h matrix.h mul.h ncmul.h normal.h numeric.h operators.h \
19   power.h registrar.h relational.h pseries.h structure.h symbol.h tinfos.h \
20   assertion.h version.h idx.h indexed.h tensor.h color.h clifford.h wildcard.h \
21   print.h symmetry.h fderivative.h
22 LFLAGS = -Pginac_yy -olex.yy.c
23 YFLAGS = -p ginac_yy -d
24 EXTRA_DIST = container.pl function.pl structure.pl input_parser.h version.h.in
25
26 # Files which are generated by perl scripts
27 $(srcdir)/function.h $(srcdir)/function.cpp: $(srcdir)/function.pl
28         cd $(srcdir) && perl -w function.pl
29
30 $(srcdir)/lst.h $(srcdir)/lst.cpp: $(srcdir)/container.pl
31         cd $(srcdir) && perl -w container.pl lst
32
33 $(srcdir)/exprseq.h $(srcdir)/exprseq.cpp: $(srcdir)/container.pl
34         cd $(srcdir) && perl -w container.pl exprseq
35
36 # Force build of headers before compilation
37 $(srcdir)/add.cpp: $(srcdir)/function.h $(srcdir)/lst.h $(srcdir)/exprseq.h