mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-06 13:35:03 +00:00
The tool currently supports drawing an elliptical line of a specified thickness. Further improvements can include adding a fill mode, and holding down shift to draw a perfect circle. Closes #375.
22 lines
368 B
Makefile
22 lines
368 B
Makefile
OBJS = \
|
|
PaintableWidget.o \
|
|
PaletteWidget.o \
|
|
ToolboxWidget.o \
|
|
Tool.o \
|
|
PenTool.o \
|
|
LineTool.o \
|
|
RectangleTool.o \
|
|
EllipseTool.o \
|
|
EraseTool.o \
|
|
BucketTool.o \
|
|
ColorDialog.o \
|
|
SprayTool.o \
|
|
PickerTool.o \
|
|
main.o
|
|
|
|
PROGRAM = PaintBrush
|
|
|
|
LIB_DEPS = GUI Draw IPC Thread Pthread Core
|
|
|
|
include ../../Makefile.common
|