diff options
Diffstat (limited to 'scripts/Makefile')
-rw-r--r-- | scripts/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/Makefile b/scripts/Makefile new file mode 100644 index 0000000..e27fd95 --- /dev/null +++ b/scripts/Makefile @@ -0,0 +1,15 @@ +PL=detect-resolution +SH=make-boot-splash rewritejpeg + +sharedir=/usr/share + +check: + @for i in $(SH);do /bin/bash -n $$i || exit 1;echo $$i syntax OK;done + @for i in $(PL);do perl -c $$i ||exit 1;done + +install: + @mkdir -p $(prefix)$(sharedir)/bootsplash/scripts/ + @for i in $(SH) $(PL);do install -m755 $$i $(prefix)$(sharedir)/bootsplash/scripts/;done + +clean: + rm -f *~ \#*\#
\ No newline at end of file |