2014-02-12 10:18:18 +01:00
|
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
|
|
|
|
|
2015-02-09 18:24:12 +01:00
|
|
|
|
2014-02-12 10:18:18 +01:00
|
|
|
bin_PROGRAMS = rpn
|
|
|
|
rpn_SOURCES = src/rpn.cpp \
|
|
|
|
src/rpn-branch.h \
|
|
|
|
src/rpn-cmd.h \
|
|
|
|
src/rpn-algebra.h \
|
|
|
|
src/rpn-general-core.h \
|
|
|
|
src/rpn-general.h \
|
|
|
|
src/rpn-logs.h \
|
|
|
|
src/rpn-stack.h \
|
|
|
|
src/rpn-store.h \
|
|
|
|
src/rpn-test.h \
|
|
|
|
src/rpn-trig.h \
|
|
|
|
src/stack.h
|
|
|
|
|
2017-04-17 23:10:53 +02:00
|
|
|
rpn_CFLAGS = -g
|
|
|
|
rpn_LDFLAGS = -Wl,--no-as-needed -lreadline -lmpfr
|
2015-02-09 18:24:12 +01:00
|
|
|
|
2014-02-12 10:18:18 +01:00
|
|
|
dist_noinst_SCRIPTS = autogen.sh
|