272b14759e
* BUG: Do not print included component information files. [GB.CAIRO] * NEW: The CairoMatrix class was completed. * NEW: The CairoPattern class got its Matrix and Filter properties. [GB.IMAGE] * BUG: When a component takes ownership of an image, the image format is correctly set now. * NEW: Most of the Color class was moved to this component. [GB.IMAGE.IO] * BUG: Use the right RGBA image format when loading images. [GB.V4L] * BUG: Fix the *.component file. git-svn-id: svn://localhost/gambas/trunk@1822 867c0c6c-44f3-4631-809d-bfa615b0a4ec
24 lines
533 B
Makefile
24 lines
533 B
Makefile
COMPONENT = gb.image
|
|
include $(top_srcdir)/component.am
|
|
|
|
INCLUDES = -I$(top_srcdir)/share @INCLTDL@
|
|
|
|
gblib_LTLIBRARIES = gb.image.la
|
|
|
|
gb_image_la_LIBADD =
|
|
gb_image_la_LDFLAGS = -module @LD_FLAGS@
|
|
|
|
gb_image_la_SOURCES = \
|
|
image_stat.h image_stat.c \
|
|
image.h image.c \
|
|
CImage.h CImage.c \
|
|
CImageStat.h CImageStat.c \
|
|
c_color.h c_color.c \
|
|
gb.image.h \
|
|
main.h main.c
|
|
|
|
image.lo: image.c
|
|
$(LTCOMPILE) -O3 $(CFLAGS) -MT image.o -MD -MP -MF $(DEPDIR)/image.Tpo -c -o image.o image.c
|
|
mv -f $(DEPDIR)/image.Tpo $(DEPDIR)/image.Po
|
|
|
|
|