mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 16:35:08 +00:00

This class can locate and load emojis, which are expected to be stored as regular PNG images at /res/emoji/U+XXXX.png, where XXXX is the character codepoint. https://github.com/SerenityOS/serenity/issues/490
29 lines
481 B
Makefile
29 lines
481 B
Makefile
include ../../Makefile.common
|
|
|
|
OBJS = \
|
|
CharacterBitmap.o \
|
|
Color.o \
|
|
DisjointRectSet.o \
|
|
Font.o \
|
|
GraphicsBitmap.o \
|
|
Painter.o \
|
|
PNGLoader.o \
|
|
Rect.o \
|
|
StylePainter.o \
|
|
Emoji.o
|
|
|
|
LIBRARY = libdraw.a
|
|
DEFINES += -DUSERLAND
|
|
|
|
all: $(LIBRARY)
|
|
|
|
$(LIBRARY): $(OBJS)
|
|
@echo "LIB $@"; $(AR) rcs $@ $(OBJS) $(LIBS)
|
|
|
|
.cpp.o:
|
|
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
|
|
|
|
-include $(OBJS:%.o=%.d)
|
|
|
|
clean:
|
|
@echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d
|