summaryrefslogtreecommitdiff
path: root/Applications/Welcome/Makefile
diff options
context:
space:
mode:
authorConrad Pankoff <deoxxa@fknsrs.biz>2019-09-16 00:41:03 +1000
committerAndreas Kling <awesomekling@gmail.com>2019-09-16 07:49:43 +0200
commit6fd096999e075aa0cd4d0206764c8201cf23ef87 (patch)
treea30028d6258038fcfb8f777e3bb63979a60bb0af /Applications/Welcome/Makefile
parent0706bf470fc052c406dcf085c68ab378892d5d20 (diff)
downloadserenity-6fd096999e075aa0cd4d0206764c8201cf23ef87.zip
Applications: Add "Welcome" application, inspired by Windows 98
Diffstat (limited to 'Applications/Welcome/Makefile')
-rw-r--r--Applications/Welcome/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Applications/Welcome/Makefile b/Applications/Welcome/Makefile
new file mode 100644
index 0000000000..a8b377dd82
--- /dev/null
+++ b/Applications/Welcome/Makefile
@@ -0,0 +1,14 @@
+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