mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-05 16:14:38 +00:00
Build them if they don't exist, but don't care about them being newer or older than the target. I believe this is what was causing build loops where IPCCompiler was being run a second time, rebuilding its .h file, then a library would depend on that .h file and get re-archived, then an application would need relinking, and something in that whole process would trigger IPCCompiler running again touching its .h file.
19 lines
341 B
Makefile
19 lines
341 B
Makefile
OBJS = \
|
|
FontEditor.o \
|
|
GlyphMapWidget.o \
|
|
GlyphEditorWidget.o \
|
|
main.o
|
|
|
|
PROGRAM = FontEditor
|
|
|
|
LIB_DEPS = GUI Draw Core IPC
|
|
|
|
FontEditor.cpp: UI_FontEditorBottom.h
|
|
|
|
UI_FontEditorBottom.h: FontEditorBottom.frm | FORMCOMPILER
|
|
$(QUIET) $(FORMCOMPILER) $< > $@
|
|
|
|
EXTRA_CLEAN = UI_FontEditorBottom.h
|
|
|
|
include ../../Makefile.common
|