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