9f1feee8ff
* BUG: Fix the way some source files are compiled with different compilation flags in the interpreter and in the gb.image component. git-svn-id: svn://localhost/gambas/trunk@2285 867c0c6c-44f3-4631-809d-bfa615b0a4ec
24 lines
574 B
Makefile
24 lines
574 B
Makefile
COMPONENT = gb.image
|
|
include $(top_srcdir)/component.am
|
|
|
|
noinst_LTLIBRARIES = libimage.la
|
|
gblib_LTLIBRARIES = gb.image.la
|
|
|
|
libimage_la_LIBADD =
|
|
libimage_la_LDFLAGS = -module @LD_FLAGS@
|
|
libimage_la_CFLAGS = -I$(top_srcdir)/share $(AM_CFLAGS) -O3
|
|
|
|
libimage_la_SOURCES = \
|
|
image.h image.c
|
|
|
|
gb_image_la_LIBADD = libimage.la
|
|
gb_image_la_LDFLAGS = -module @LD_FLAGS@
|
|
gb_image_la_CFLAGS = -I$(top_srcdir)/share $(AM_CFLAGS)
|
|
|
|
gb_image_la_SOURCES = \
|
|
image_stat.h image_stat.c \
|
|
CImage.h CImage.c \
|
|
CImageStat.h CImageStat.c \
|
|
c_color.h c_color.c \
|
|
gb.image.h \
|
|
main.h main.c
|