mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:38:11 +00:00

We can now perform some basic 2D transforms through an affine matrix. This patch adds translate() and scale() :^)
29 lines
567 B
Makefile
29 lines
567 B
Makefile
OBJS = \
|
|
AffineTransform.o \
|
|
Bitmap.o \
|
|
CharacterBitmap.o \
|
|
Color.o \
|
|
DisjointRectSet.o \
|
|
Emoji.o \
|
|
Font.o \
|
|
GIFLoader.o \
|
|
ImageDecoder.o \
|
|
PNGLoader.o \
|
|
Painter.o \
|
|
Palette.o \
|
|
Point.o \
|
|
Rect.o \
|
|
ShareableBitmap.o \
|
|
Size.o \
|
|
StylePainter.o \
|
|
SystemTheme.o \
|
|
Triangle.o
|
|
|
|
LIBRARY = libgfx.a
|
|
|
|
install:
|
|
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibGfx/
|
|
cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/LibGfx/
|
|
cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
|
|
|
|
include ../../Makefile.common
|