mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 07:55:38 +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
31 lines
623 B
Makefile
31 lines
623 B
Makefile
lib_LTLIBRARIES = $(TARGET)
|
|
|
|
if ENABLE_GNOME
|
|
TARGET = libgnomesharpglue.la
|
|
else
|
|
TARGET =
|
|
endif
|
|
|
|
libgnomesharpglue_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgnomesharpglue_la_SOURCES = \
|
|
canvas.c \
|
|
canvasitem.c \
|
|
canvaspoints.c \
|
|
canvas-proxy.c \
|
|
canvas-proxy.h \
|
|
canvas-proxy-marshal.c \
|
|
canvas-proxy-marshal.h \
|
|
program.c \
|
|
#
|
|
|
|
libgnomesharpglue_la_LIBADD = $(GNOME_LIBS)
|
|
|
|
INCLUDES = $(GNOME_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgnomesharpglue.dll: $(libgnomesharpglue_la_OBJECTS) libgnomesharpglue.rc libgnomesharpglue.def
|
|
./build-dll libgnomesharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|