summaryrefslogtreecommitdiff
path: root/Libraries/LibGfx/Makefile
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@serenityos.org>2020-05-06 18:40:06 +0300
committerAndreas Kling <kling@serenityos.org>2020-05-14 20:15:18 +0200
commit450a2a0f9ce2443bc06445ee018c9860d8cd5fc8 (patch)
treec124a612ef259b764855af5e33c39e0d09ad4df2 /Libraries/LibGfx/Makefile
parent49727ffee424d8c0038ce18b91b0bf0ff33b1a4d (diff)
downloadserenity-450a2a0f9ce2443bc06445ee018c9860d8cd5fc8.zip
Build: Switch to CMake :^)
Closes https://github.com/SerenityOS/serenity/issues/2080
Diffstat (limited to 'Libraries/LibGfx/Makefile')
-rw-r--r--Libraries/LibGfx/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/Libraries/LibGfx/Makefile b/Libraries/LibGfx/Makefile
deleted file mode 100644
index 8f8833d811..0000000000
--- a/Libraries/LibGfx/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-OBJS = \
- AffineTransform.o \
- Bitmap.o \
- CharacterBitmap.o \
- Color.o \
- DisjointRectSet.o \
- Emoji.o \
- Font.o \
- FloatRect.o \
- GIFLoader.o \
- ImageDecoder.o \
- PNGLoader.o \
- Painter.o \
- Palette.o \
- Path.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