mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-10 17:55:52 +00:00
16 lines
268 B
Makefile
16 lines
268 B
Makefile
OBJS = \
|
|
main.o \
|
|
TextWidget.o \
|
|
background.png.o
|
|
|
|
PROGRAM = Welcome
|
|
|
|
LIB_DEPS = GUI Gfx IPC Core
|
|
|
|
.SUFFIXES: .png
|
|
%.png.o: %.png
|
|
@echo "LINK $<"
|
|
$(QUIET) $(LINK) --relocatable --format binary -m elf_$(ARCH) --output $@ $<
|
|
|
|
include ../../Makefile.common
|