mirror of
https://github.com/mdbtools/mdbtools.git
synced 2026-02-26 22:02:43 +08:00
libsql yacc output files are generated by make, not configure. So they should be removed by clean, not distclean.
9 lines
339 B
Makefile
9 lines
339 B
Makefile
lib_LTLIBRARIES = libmdbsql.la
|
|
libmdbsql_la_SOURCES= mdbsql.c parser.y lexer.l
|
|
libmdbsql_la_LDFLAGS = -version-info 2:0:0 -Wl,--version-script=$(srcdir)/libmdbsql.map
|
|
CLEANFILES = parser.c parser.h lexer.c
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include $(GLIB_CFLAGS)
|
|
LIBS = $(GLIB_LIBS)
|
|
libmdbsql_la_LIBADD = ../libmdb/libmdb.la
|
|
YACC = @YACC@ -d
|