mirror of
https://github.com/louisrubet/rpn
synced 2024-11-17 07:47:50 +01:00
22 lines
441 B
Makefile
22 lines
441 B
Makefile
AUTOMAKE_OPTIONS = subdir-objects
|
|
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
|
|
|
|
|
|
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
|
|
|
|
rpn_CFLAGS = -g
|
|
rpn_LDFLAGS = -Wl,--no-as-needed -lreadline -lmpfr
|
|
|
|
dist_noinst_SCRIPTS = autogen.sh
|