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

EXTRA_DIST = $(CSFILES)

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

$(ASSEMBLY):
	$(CSC) $(CSFLAGS) -out:$(ASSEMBLY) -target:exe $(references) $(CSFILES)

all: $(ASSEMBLY)