diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-10-26 13:00:51 +0200 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-10-26 13:00:51 +0200 |
| commit | 1af1bf9ae74117141c74d5e0816041fde226f0d7 (patch) | |
| tree | e9d343f924f4366fff2d7fa778bd83d133d52698 | |
| parent | 64d97723b3faaa593fb1d950fd75cae076b7d3a8 (diff) | |
Add a Makefile
| -rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b1d32c1 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +.POSIX: + +all: index.html + +index.html: index.gsp + gsp index.gsp >index.html |