mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 21:45:28 +00:00
5c87903756
* makefile: when doing distclean, attempt distclean on all the C# subdirs too * gconf/Makefile.in: added distclean target to rm the Makefiles in the subdirs of gconf/ * glue/Makefile.am: build libgtksharpglue as an unversioned module to avoid so -> so.0 -> so.0.0 symlink mess * */Makefile.in: call mkinstalldirs before installing any files so that subdirs can be installed seperately or in any sequence (eg binding dirs before native dirs) svn path=/trunk/gtk-sharp/; revision=9828
28 lines
476 B
Makefile
28 lines
476 B
Makefile
MCS = mcs
|
|
DESTDIR =
|
|
|
|
SOURCES = \
|
|
ClientBase.cs \
|
|
Client.cs \
|
|
ChangeSet.cs \
|
|
_Entry.cs \
|
|
NoSuchKeyException.cs \
|
|
NotifyEventArgs.cs \
|
|
NotifyEventHandler.cs \
|
|
NotifyWrapper.cs \
|
|
Value.cs \
|
|
#
|
|
|
|
all: gconf-sharp.dll
|
|
|
|
gconf-sharp.dll: $(SOURCES)
|
|
$(MCS) $(SOURCES) -L ../../glib /r:glib-sharp.dll /target:library /out:gconf-sharp.dll
|
|
|
|
install: all
|
|
../../mkinstalldirs $(DESTDIR)@prefix@/lib && \
|
|
cp gconf-sharp.dll $(DESTDIR)@prefix@/lib
|
|
|
|
clean:
|
|
rm -f gconf-sharp.dll
|
|
|