]> www.ginac.de Git - ginac.git/blob - ginac/Makefile.am
- the ex stream >> operator is gone
[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   expairseq.cpp exprseq.cpp fail.cpp function.cpp inifcns.cpp \
6   inifcns_trans.cpp inifcns_zeta.cpp inifcns_gamma.cpp matrix.cpp mul.cpp \
7   normal.cpp numeric.cpp operators.cpp power.cpp registrar.cpp relational.cpp \
8   symbol.cpp pseries.cpp utils.cpp ncmul.cpp clifford.cpp structure.cpp \
9   color.cpp indexed.cpp idx.cpp isospin.cpp exprseq_suppl.cpp lst.cpp \
10   lst_suppl.cpp simp_lor.cpp coloridx.cpp lorentzidx.cpp lortensor.cpp \
11   input_parser.yy input_lexer.ll input_lexer.h \
12   remember.h remember.cpp debugmsg.h utils.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 clifford.h color.h \
17   coloridx.h constant.h ex.h expair.h expairseq.h exprseq.h fail.h flags.h \
18   function.h idx.h indexed.h inifcns.h isospin.h lorentzidx.h lst.h matrix.h \
19   mul.h ncmul.h normal.h numeric.h operators.h power.h registrar.h \
20   relational.h pseries.h simp_lor.h structure.h symbol.h lortensor.h tinfos.h \
21   assertion.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
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