e51fc2d951
* NEW: The RAISE instruction now can raise events defined in a parent class. * NEW: Timer: The Trigger method now does nothing if there is an already pending trigger. This behaviour is not backward-compatible, so it may be removed if problems arise. [COMPILER] * NEW: The RAISE instruction now can raise events defined in a parent class. [GB.DRAW] * NEW: Implement standard operators in Point and PointF classes. * NEW: Automatic conversion between Point and PointF. * NEW: 'CDraw.c' and 'CDraw.h' source files have been renamed as 'cdraw.c' and 'cdraw.h'. * NEW: Rect.Center() and RectF.Center() are two new methods that return the center of the rectangle. [GB.FORM] * NEW: FileChooser: tar archives now can be uncompressed. git-svn-id: svn://localhost/gambas/trunk@5359 867c0c6c-44f3-4631-809d-bfa615b0a4ec
19 lines
400 B
Makefile
19 lines
400 B
Makefile
EXTRA_DIST = gb.image.h
|
|
|
|
gblib_LTLIBRARIES = gb.draw.la
|
|
|
|
gb_draw_la_LIBADD = @MATH_LIB@
|
|
gb_draw_la_LDFLAGS = -module @LD_FLAGS@
|
|
gb_draw_la_CFLAGS = -I$(top_srcdir)/share @INCLTDL@ $(AM_CFLAGS)
|
|
|
|
gb_draw_la_SOURCES = \
|
|
gb.draw.h gb.paint.h \
|
|
gb_list.c \
|
|
matrix.h matrix.c \
|
|
cdraw.h cdraw.c \
|
|
cpaint.h cpaint.c \
|
|
crect.h crect.c crect_temp.h \
|
|
cpoint.h cpoint.c cpoint_temp.h \
|
|
main.h main.c
|
|
|
|
|