diff options
author | Conrad Pankoff <deoxxa@fknsrs.biz> | 2019-09-16 00:41:03 +1000 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-16 07:49:43 +0200 |
commit | 6fd096999e075aa0cd4d0206764c8201cf23ef87 (patch) | |
tree | a30028d6258038fcfb8f777e3bb63979a60bb0af /Applications/Welcome/Makefile | |
parent | 0706bf470fc052c406dcf085c68ab378892d5d20 (diff) | |
download | serenity-6fd096999e075aa0cd4d0206764c8201cf23ef87.zip |
Applications: Add "Welcome" application, inspired by Windows 98
Diffstat (limited to 'Applications/Welcome/Makefile')
-rw-r--r-- | Applications/Welcome/Makefile | 14 |
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 |