~iwarford/do-plugins/inline-google-fix

« back to all changes in this revision

Viewing changes to GNOME-Session/Makefile.am

  • Committer: David Siegel
  • Date: 2008-02-05 00:39:44 UTC
  • Revision ID: dave@ja7gggggggg9-20080205003944-fjdcvl3lnuzuxmhz
* Added GNOME-Session plugin, which allows you to restart, suspend, shutdown, hibernate, logout, and lock your screen right from Do.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
EXTRA_DIST = PowerManagement.cs ScreenSaver.cs SessionCommandItem.cs SessionCommandsItemSource.cs
 
2
 
 
3
ASSEMBLY_NAME=GNOME-Session
 
4
ASSEMBLY=$(ASSEMBLY_NAME).dll
 
5
 
 
6
CSFLAGS+= -debug+ -debug:full
 
7
 
 
8
CLEANFILES = $(ASSEMBLY){,.mdb}
 
9
 
 
10
gnome_session_references = $(DO_ADDINS_LIBS)
 
11
 
 
12
gnome_session_sources  =        \
 
13
                PowerManagement.cs \
 
14
                ScreenSaver.cs \
 
15
                SessionCommandItem.cs \
 
16
                SessionCommandsItemSource.cs
 
17
 
 
18
gnome_session_build_sources = $(addprefix $(srcdir)/, $(gnome_session_sources))
 
19
 
 
20
plugin_DATA = $(ASSEMBLY)
 
21
 
 
22
all: $(ASSEMBLY)
 
23
 
 
24
$(ASSEMBLY): $(gnome_session_sources)
 
25
        $(CSC) $(CSFLAGS) $(gnome_session_references) -pkg:ndesk-dbus-1.0 -target:library -out:$@ $(gnome_session_build_sources)