libdice/Makefile.am

21 lines
347 B
Makefile
Raw Normal View History

2018-02-13 20:27:38 +01:00
AM_YFLAGS = -d
AM_LFLAGS = -P dp
2018-02-13 20:27:38 +01:00
BUILT_SOURCES = lib/dice_parse.h
lib_LTLIBRARIES = libdice.la
2018-02-14 19:31:52 +01:00
libdice_la_SOURCES = lib/dice_lexer.l \
2018-02-13 20:27:38 +01:00
lib/dice_parse.y \
2018-02-14 19:31:52 +01:00
lib/dice.h \
lib/dice.c \
2018-05-18 10:57:39 +02:00
lib/diceexpr.c
2018-02-13 20:27:38 +01:00
2018-02-22 13:57:48 +01:00
include_HEADERS = lib/dice.h
2018-02-13 20:27:38 +01:00
AM_CFLAGS = -Ilib
libdice_la_LIBADD = ${BSD_LIBS} -lm
2018-02-13 20:27:38 +01:00
2018-03-23 16:14:00 +01:00
pkgconfig_DATA = libdice.pc
2018-02-13 20:27:38 +01:00
SUBDIRS = . tests