1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00
serenity/Libraries/LibGfx/Makefile
Andreas Kling 6f2c63000d LibGfx: Add a basic AffineTransform class
We can now perform some basic 2D transforms through an affine matrix.
This patch adds translate() and scale() :^)
2020-04-12 19:23:39 +02:00

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