3b3af77895
svn path=/trunk/gtk-sharp/; revision=126575
19 lines
357 B
Makefile
Executable file
19 lines
357 B
Makefile
Executable file
TARGETS = AppInfo.exe
|
|
|
|
DEBUGS = $(addsuffix .mdb, $(TARGETS))
|
|
|
|
assemblies = \
|
|
$(top_builddir)/glib/glib-sharp.dll \
|
|
$(top_builddir)/gio/gio-sharp.dll
|
|
|
|
references=$(addprefix /r:, $(assemblies))
|
|
|
|
noinst_SCRIPTS = $(TARGETS)
|
|
CLEANFILES = $(TARGETS) $(DEBUGS)
|
|
|
|
.cs.exe: $(assemblies)
|
|
$(CSC) /out:$@ $(references) $<
|
|
|
|
EXTRA_DIST = \
|
|
AppInfo.cs
|
|
|