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

Makefile.am « MonoDevelop.Database « extras - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d364cba9d84c0135c238223b5fb709989c689181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
SUBDIRS = \
	MonoDevelop.Database.Sql \
	MonoDevelop.Database.Components \
	MonoDevelop.Database.Designer \
	MonoDevelop.Database.Sql.MySql \
	MonoDevelop.Database.Sql.Npgsql \
	MonoDevelop.Database.Sql.Sqlite \
	MonoDevelop.Database.Sql.SqlServer \
	MonoDevelop.Database.Query \
	MonoDevelop.Database.CodeGenerator \
	MonoDevelop.Database.ConnectionManager \
	po

all:

pkgconfig_in_files = monodevelop-database.pc.in

pkgconfigdir= $(prefix)/lib/pkgconfig
pkgconfig_DATA = $(pkgconfig_in_files:.pc.in=.pc)

PACKAGES = 

mpacks: $(PACKAGES)
	test -z "packages" || mkdir -p packages
	mdtool setup p $(PACKAGES:%=%) -d:packages
	mdtool setup rb packages

### SYNCH BLOCK: any changes to this line should be kept in sync with the corresponding block in Makefile.am
MD_PKG_CONFIG_PATH=$(gtksharp_prefix)/lib/pkgconfig/:/usr/lib/pkgconfig/:/usr/local/lib/pkgconfig/:/usr/share/pkgconfig/:/usr/local/share/pkgconfig/$(shell if test -d /usr/lib64; then echo ":/usr/lib64/pkgconfig/:/usr/local/lib64/pkgconfig/"; fi)
### END BLOCK

# we can't use the variables that are conditionally defined
EXTRA_DIST = $(pkgconfig_in_files)

DISTCLEANFILES = $(pkgconfig_DATA)