1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-17 22:30:59 +00:00
serenity/Applications/Welcome/Makefile
2020-02-06 12:04:00 +01:00

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