aboutsummaryrefslogtreecommitdiff
path: root/bindings/mono/examples/Makefile.am
blob: de93b20fe0a3fa46223be55439408da561b554d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
ASSEMBLY = AyatanaIndicatorExample.exe
CSFILES = AyatanaIndicatorExample.cs
CLEANFILES = $(ASSEMBLY)
DISTCLEANFILES = Makefile.in

EXTRA_DIST = $(CSFILES)

references = $(GTK_SHARP_LIBS) -r:$(top_builddir)/bindings/mono/ayatana-appindicator-sharp.dll

$(ASSEMBLY): $(CSFILES) Makefile.am
	$(CSC) $(CSFLAGS) -out:$(ASSEMBLY) -target:exe $(references) $(srcdir)/$(CSFILES)

all: $(ASSEMBLY)