mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-28 11:35:33 +00:00
28 lines
529 B
Makefile
28 lines
529 B
Makefile
|
ASSEMBLY = gconf-sharp.dll
|
||
|
assemblydir = $(libdir)
|
||
|
assembly_DATA = $(ASSEMBLY)
|
||
|
CLEANFILES = $(ASSEMBLY)
|
||
|
|
||
|
EXTRA_DIST = \
|
||
|
$(sources)
|
||
|
|
||
|
references = \
|
||
|
/r:../../glib/glib-sharp.dll
|
||
|
|
||
|
sources = \
|
||
|
ClientBase.cs \
|
||
|
Client.cs \
|
||
|
ChangeSet.cs \
|
||
|
_Entry.cs \
|
||
|
NoSuchKeyException.cs \
|
||
|
NotifyEventArgs.cs \
|
||
|
NotifyEventHandler.cs \
|
||
|
NotifyWrapper.cs \
|
||
|
Value.cs
|
||
|
|
||
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
||
|
|
||
|
$(ASSEMBLY): $(build_sources)
|
||
|
$(CSC) /out:$(ASSEMBLY) /target:library $(references) $(build_sources)
|
||
|
|