1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
## Process this file with automake to produce Makefile.in
EXFILES = archive1.cpp compile1.cpp compile2.cpp compile3.cpp lanczos.cpp \
mystring.cpp derivative.cpp
TEXI = ginac-examples.texi
info_TEXINFOS = $(TEXI)
TXT = ginac-examples.txt
HTML = ginac-examples.html
all: $(EXFILES)
${MAKEINFO} --no-split --no-headers $(srcdir)/$(TEXI) > $(TXT)
${MAKEINFO} --no-split --html $(srcdir)/$(TEXI)
CLEANFILES = $(TXT) $(HTML)
EXTRA_DIST = $(EXFILES) CMakeLists.txt
AM_CPPFLAGS = -I$(srcdir)/../../ginac -I../../ginac -DIN_GINAC
noinst_PROGRAMS = archive1 \
compile1 \
compile3 \
mystring \
derivative
archive1_SOURCES = archive1.cpp
archive1_LDADD = ../../ginac/libginac.la
compile1_SOURCES = compile1.cpp
compile1_LDADD = ../../ginac/libginac.la
# compile2 example uses the Cuba library: (http://www.feynarts.de)
# compile2_SOURCES = compile2.cpp
# compile2_LDADD = ../../ginac/libginac.la
compile3_SOURCES = compile3.cpp
compile3_LDADD = ../../ginac/libginac.la
mystring_SOURCES = mystring.cpp
mystring_LDADD = ../../ginac/libginac.la
derivative_SOURCES = derivative.cpp
derivative_LDADD = ../../ginac/libginac.la
|