mirror of
https://github.com/RGBCube/serenity
synced 2026-01-17 22:30:59 +00:00
15 lines
268 B
Makefile
15 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
|