Files
ladybird/Applications/PaintBrush/Makefile
Andreas Kling 4cf3f00bab PaintBrush: Add "Create new layer..." action
This action pops up a dialog asking for a name + dimensions. If OK is
clicked, you get a new layer with those specifications. :^)
2020-05-13 21:16:55 +02:00

26 lines
436 B
Makefile

OBJS = \
BucketTool.o \
CreateNewLayerDialog.o \
EllipseTool.o \
EraseTool.o \
Image.o \
ImageEditor.o \
Layer.o \
LayerModel.o \
LineTool.o \
MoveTool.o \
PaletteWidget.o \
PenTool.o \
PickerTool.o \
RectangleTool.o \
SprayTool.o \
Tool.o \
ToolboxWidget.o \
main.o
PROGRAM = PaintBrush
LIB_DEPS = GUI Gfx IPC Thread Pthread Core
include ../../Makefile.common