mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
19 lines
340 B
Makefile
19 lines
340 B
Makefile
OBJS = \
|
|
FontEditor.o \
|
|
GlyphMapWidget.o \
|
|
GlyphEditorWidget.o \
|
|
main.o
|
|
|
|
PROGRAM = FontEditor
|
|
|
|
LIB_DEPS = GUI Gfx Core IPC
|
|
|
|
FontEditor.cpp: UI_FontEditorBottom.h
|
|
|
|
UI_FontEditorBottom.h: FontEditorBottom.frm | FORMCOMPILER
|
|
$(QUIET) $(FORMCOMPILER) $< > $@
|
|
|
|
EXTRA_CLEAN = UI_FontEditorBottom.h
|
|
|
|
include ../../Makefile.common
|