mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:05:33 +00:00
621b39b531
* kill the makefile.win32 build system. it has been unmaintained for quite some time, replaced by the auto* build in cygwin. svn path=/trunk/gtk-sharp/; revision=103308
26 lines
590 B
Makefile
26 lines
590 B
Makefile
lib_LTLIBRARIES = $(TARGET)
|
|
|
|
if ENABLE_GLADE
|
|
TARGET = libgladesharpglue-2.la
|
|
else
|
|
TARGET =
|
|
endif
|
|
|
|
libgladesharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgladesharpglue_2_la_SOURCES = \
|
|
gladexml.c
|
|
|
|
nodist_libgladesharpglue_2_la_SOURCES = generated.c
|
|
|
|
libgladesharpglue_2_la_LIBADD = $(GLADE_LIBS)
|
|
|
|
INCLUDES = $(GLADE_CFLAGS) $(GTK_SHARP_VERSION_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgladesharpglue.dll: $(libgladesharpglue_2_la_OBJECTS) libgladesharpglue.rc libgladesharpglue.def
|
|
./build-dll libgladesharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = win32dll.c
|