File: Makefile.am

package info (click to toggle)
gnome-do-plugins 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,272 kB
  • ctags: 868
  • sloc: cs: 4,634; sh: 632; makefile: 379
file content (23 lines) | stat: -rw-r--r-- 458 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
EXTRA_DIST=CreateEmptyFileAction.cs

ASSEMBLY_NAME=File
ASSEMBLY=$(ASSEMBLY_NAME).dll

CLEANFILES = $(ASSEMBLY){,.mdb}

CSFLAGS += -debug+ -debug:full

file_references=$(DO_ADDINS_LIBS)

file_sources= \
		CreateEmptyFileAction.cs

file_build_sources = $(addprefix $(srcdir)/,$(file_sources))

plugin_DATA = $(ASSEMBLY)

all: $(ASSEMBLY)

$(ASSEMBLY): $(file_build_sources)
	$(CSC) $(CSFLAGS) $(file_references) -target:library -out:$@ $(file_build_sources)