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 (25 lines) | stat: -rw-r--r-- 476 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
EXTRA_DIST=SSHAction.cs SSHHosts.cs

ASSEMBLY_NAME=SSH
ASSEMBLY=$(ASSEMBLY_NAME).dll

CLEANFILES = $(ASSEMBLY){,.mdb}

CSFLAGS += -debug+ -debug:full

ssh_references=$(DO_ADDINS_LIBS) $(GCONF_SHARP_LIBS)


ssh_sources= \
		SSHAction.cs \
		SSHHosts.cs

ssh_build_sources = $(addprefix $(srcdir)/, $(ssh_sources))

plugin_DATA = $(ASSEMBLY)

all: $(ASSEMBLY)

$(ASSEMBLY): $(ssh_build_sources)
	$(CSC) $(CSFLAGS) $(ssh_references) -target:library -out:$@ $(ssh_build_sources)