mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 17:45:35 +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
30 lines
934 B
Makefile
30 lines
934 B
Makefile
MCS = mcs
|
|
DESTDIR =
|
|
|
|
SOURCES = \
|
|
PropertyEditor.cs \
|
|
PropertyEditorBool.cs \
|
|
PropertyEditorColorPicker.cs \
|
|
PropertyEditorEnum.cs \
|
|
PropertyEditorEntry.cs \
|
|
PropertyEditorFileEntry.cs \
|
|
PropertyEditorOptionMenu.cs \
|
|
PropertyEditorRadioButton.cs \
|
|
PropertyEditorSpinButton.cs \
|
|
PropertyEditorToggleButton.cs \
|
|
EditorShell.cs \
|
|
#
|
|
|
|
all: gconf-sharp-peditors.dll
|
|
|
|
gconf-sharp-peditors.dll: $(SOURCES)
|
|
$(MCS) $(SOURCES) -L ../../glib -L ../../pango -L ../../atk -L ../../gdk -L ../../gtk -L ../../art -L ../../gnome -L ../GConf -L ../../glade /r:glib-sharp.dll /r:pango-sharp.dll /r:atk-sharp.dll /r:gdk-sharp.dll /r:gtk-sharp.dll /r:art-sharp.dll /r:gnome-sharp.dll /r:glade-sharp.dll /r:gconf-sharp.dll /r:System.Drawing /target:library /out:gconf-sharp-peditors.dll
|
|
|
|
install: all
|
|
../../mkinstalldirs $(DESTDIR)@prefix@/lib && \
|
|
cp gconf-sharp-peditors.dll $(DESTDIR)@prefix@/lib
|
|
|
|
clean:
|
|
rm -f gconf-sharp-peditors.dll
|
|
|