Serenity Operating System
1OBJS = \
2 Bitmap.o \
3 CharacterBitmap.o \
4 Color.o \
5 DisjointRectSet.o \
6 Emoji.o \
7 Font.o \
8 GIFLoader.o \
9 ImageDecoder.o \
10 PNGLoader.o \
11 Painter.o \
12 Palette.o \
13 Point.o \
14 Rect.o \
15 ShareableBitmap.o \
16 Size.o \
17 StylePainter.o \
18 SystemTheme.o \
19 Triangle.o
20
21LIBRARY = libgfx.a
22
23install:
24 mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibGfx/
25 cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/LibGfx/
26 cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
27
28include ../../Makefile.common