Ryujinx-GtkSharp/gda/Makefile.in
Rodrigo Moya d5954e56b8 2002-09-01 Rodrigo Moya <rodrigo@ximian.com>
* gda/Application.cs: new class for libgda initialization and event
	loop management.

	* gda/Makefile.in: added new file as a dependency.

svn path=/trunk/gtk-sharp/; revision=7170
2002-09-01 11:21:43 +00:00

21 lines
449 B
Makefile
Executable File

MCS=mcs
DESTDIR=
@ENABLE_GDA_TRUE@ all: linux
@ENABLE_GDA_FALSE@ all:
windows:
$(CSC) /unsafe /target:library /r:../glib/glib-sharp.dll /out:gda-sharp.dll /recurse:*.cs
linux: gda-sharp.dll
gda-sharp.dll: Application.cs generated/*.cs
$(MCS) --unsafe --target library -L ../glib -r glib-sharp.dll -o gda-sharp.dll --recurse '*.cs'
clean:
rm -f *.dll
rm -rf generated
install: all
@ENABLE_GDA_TRUE@ cp gda-sharp.dll $(DESTDIR)@prefix@/lib