mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:57:44 +00:00
14 lines
239 B
Makefile
14 lines
239 B
Makefile
include ../../Makefile.common
|
|
|
|
OBJS = \
|
|
main.o \
|
|
TextWidget.o \
|
|
background.png.o
|
|
|
|
APP = Welcome
|
|
|
|
.SUFFIXES: .png
|
|
%.png.o: %.png
|
|
@echo "LINK $<"; $(LINK) --relocatable --format binary --output $@ $<
|
|
|
|
include ../Makefile.common
|