libdice/Makefile.am
Florian Stinglmayr 92b909158c add tiny expression library and make it a dice expression parser
Use tiny expression library (from Github) and expand it to provide
dice expression parsing. This needs more testing obviously.
2018-02-17 10:52:46 +01:00

16 lines
265 B
Makefile

AM_YFLAGS = -d
BUILT_SOURCES = lib/dice_parse.h
lib_LTLIBRARIES = libdice.la
libdice_la_SOURCES = lib/dice_lexer.l \
lib/dice_parse.y \
lib/dice.h \
lib/dice.c \
lib/diceexpr.c
AM_CFLAGS = -Ilib
libdice_la_LIBADD = ${BSD_LIBS}
SUBDIRS = . tests