mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 11:55:38 +00:00
732cdf7729
* */Makefile.in : rework the prefix handling for duncan's packaging. svn path=/trunk/gtk-sharp/; revision=18778
29 lines
494 B
Makefile
29 lines
494 B
Makefile
MCS = mcs
|
|
DESTDIR =
|
|
prefix=@prefix@
|
|
|
|
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
|
|
|