mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 12:45:28 +00:00
112f066abf
* configure.in : deal with a csc-ism in source paths. * */Makefile.am : use the GENERATED_SOURCES var. * */glue/Makefile.am : add -no-undefined for win32 dll builds. svn path=/trunk/gtk-sharp/; revision=29367
24 lines
512 B
Makefile
24 lines
512 B
Makefile
lib_LTLIBRARIES = $(TARGET)
|
|
|
|
if ENABLE_GLADE
|
|
TARGET = libgladesharpglue.la
|
|
else
|
|
TARGET =
|
|
endif
|
|
|
|
libgladesharpglue_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgladesharpglue_la_SOURCES = \
|
|
gladexml.c
|
|
|
|
libgladesharpglue_la_LIBADD = $(GLADE_LIBS)
|
|
|
|
INCLUDES = $(GLADE_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgladesharpglue.dll: $(libgladesharpglue_la_OBJECTS) libgladesharpglue.rc libgladesharpglue.def
|
|
./build-dll libgladesharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|