mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-09-19 10:37:54 +08:00
10 lines
292 B
Makefile
10 lines
292 B
Makefile
lib_LTLIBRARIES = libmdbsql.la
|
|
libmdbsql_la_SOURCES= mdbsql.c parser.y lexer.l
|
|
INCLUDES = -I$(top_srcdir)/include `glib-config --cflags`
|
|
LIBS = `glib-config --libs`
|
|
LDADD = ../libmdb/libmdb.la
|
|
YACC = bison -y -d
|
|
|
|
dist-hook:
|
|
rm -f $(distdir)/parser.c $(distdir)/parser.h $(distdir)/lexer.c
|