a Makefile based static website generator https://git.lenzplace.org/lenzj/makehtml
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
makehtml/configure

16 lines
290 B

#!/bin/sh
echo -n "Setting up Makefile"
case $(uname | tr '[:upper:]' '[:lower:]') in
linux*)
echo " for Linux"
cp Makefile.gnu Makefile
;;
openbsd*)
echo " for OpenBSD"
cp Makefile.bsd Makefile
;;
*)
echo " ... Failed! Unknown OS!"
exit 1
;;
esac