mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-27 01:50:24 +00:00
c7ea94697e
We've been using a per-directory "install.sh" for some time, so let's get rid of the old way of doing things.
28 lines
467 B
Makefile
28 lines
467 B
Makefile
include ../../Makefile.common
|
|
|
|
OBJS = \
|
|
CharacterBitmap.o \
|
|
Color.o \
|
|
DisjointRectSet.o \
|
|
Font.o \
|
|
GraphicsBitmap.o \
|
|
Painter.o \
|
|
PNGLoader.o \
|
|
Rect.o \
|
|
StylePainter.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
|