Florian Stinglmayr
92b909158c
Use tiny expression library (from Github) and expand it to provide dice expression parsing. This needs more testing obviously.
16 lines
265 B
Makefile
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
|