Drop this one too
[mono.git] / mcs / class / Mono.Data.SqliteClient / Makefile
1 thisdir = class/Mono.Data.SqliteClient
2 SUBDIRS =
3 include ../../build/rules.make
4
5 LIBRARY = Mono.Data.SqliteClient.dll
6 LIB_MCS_FLAGS = /unsafe /r:System.dll /r:System.Data.dll
7
8 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) /nowarn:618
9
10 EXTRA_DISTFILES = Test/SqliteTest.cs \
11         Test/test.sql
12
13 run-test-local: test.db 
14
15 test.db: Test/test.sql
16         rm -f $@
17         sqlite3 $@ < $< || :
18
19 include ../../build/library.make