Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « Mono.Data.SqliteClient « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba102f1a0c38fddbce702a46ea34233ca0898307 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
thisdir = class/Mono.Data.SqliteClient
SUBDIRS =
include ../../build/rules.make

LIBRARY = Mono.Data.SqliteClient.dll
LIB_MCS_FLAGS = /unsafe /r:System.dll /r:System.Data.dll /r:Mono.Posix.dll

TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) /nowarn:618

EXTRA_DISTFILES = Test/SqliteTest.cs \
	Test/test.sql

run-test-local: test.db 

test.db: Test/test.sql
	rm -f $@
	sqlite3 $@ < $< || :

include ../../build/library.make