File: Makefile.include

package info (click to toggle)
tomboy 0.10.2-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 13,772 kB
  • ctags: 5,500
  • sloc: cs: 37,843; xml: 10,842; sh: 9,165; ansic: 3,959; makefile: 1,063
file content (33 lines) | stat: -rw-r--r-- 703 bytes parent folder | download
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
## Makefile.include

## Directories

DIR_ADDINS_ADDINS = $(top_builddir)/Mono.Addins/Mono.Addins
DIR_ADDINS_GUI = $(top_builddir)/Mono.Addins/Mono.Addins.Gui
DIR_ADDINS_SETUP = $(top_builddir)/Mono.Addins/Mono.Addins.Setup

## Links

LINK_TOMBOY_EXE =					\
	-r:$(top_builddir)/Tomboy/Tomboy.exe

if EXTERNAL_MONO_ADDINS
LINK_MONO_ADDINS = $(MONO_ADDINS_LIBS)
else
LINK_MONO_ADDINS =					\
	-r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll		\
	-r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll	\
	-r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll
endif

## Build

CSC_FLAGS = -debug
CSC = gmcs $(CSC_FLAGS) -target:exe
CSC_LIB = $(CSC) -target:library

## Runtime

MONO_DEBUGFLAGS = --debug
RUNTIME = mono $(MONO_DEBUGFLAGS)