]> www.ginac.de Git - ginac.git/blob - ginac/Makefile.am
implemented the case in pseries::derivative() where s!=var
[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 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 structure.cpp exprseq_suppl.cpp \
9   lst.cpp lst_suppl.cpp input_parser.yy input_lexer.ll input_lexer.h \
10   remember.h remember.cpp utils.h idx.cpp indexed.cpp tensor.cpp color.cpp \
11   clifford.cpp wildcard.cpp print.cpp symmetry.cpp fderivative.cpp tostring.h
12 libginac_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
13   -release $(LT_RELEASE)
14 ginacincludedir = $(includedir)/ginac
15 ginacinclude_HEADERS = ginac.h add.h archive.h basic.h constant.h ex.h \
16   expair.h expairseq.h exprseq.h fail.h flags.h function.h inifcns.h \
17   lst.h matrix.h mul.h ncmul.h normal.h numeric.h operators.h power.h \
18   registrar.h relational.h pseries.h structure.h symbol.h tinfos.h assertion.h \
19   version.h idx.h indexed.h tensor.h color.h clifford.h wildcard.h print.h \
20   symmetry.h fderivative.h
21 LFLAGS = -Pginac_yy -olex.yy.c
22 YFLAGS = -p ginac_yy -d
23 EXTRA_DIST = container.pl function.pl structure.pl input_parser.h version.h.in
24
25 # Files which are generated by perl scripts
26 $(srcdir)/function.h $(srcdir)/function.cpp: $(srcdir)/function.pl
27         cd $(srcdir) && perl -w function.pl
28
29 $(srcdir)/lst.h $(srcdir)/lst.cpp: $(srcdir)/container.pl
30         cd $(srcdir) && perl -w container.pl lst
31
32 $(srcdir)/exprseq.h $(srcdir)/exprseq.cpp: $(srcdir)/container.pl
33         cd $(srcdir) && perl -w container.pl exprseq
34
35 # Force build of headers before compilation
36 $(srcdir)/add.cpp: $(srcdir)/function.h $(srcdir)/lst.h $(srcdir)/exprseq.h