diff options
| author | Miguel <m.i@gmx.at> | 2019-03-18 11:08:08 +0100 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2019-03-18 11:08:08 +0100 |
| commit | 7c432e06f15426f92da31c6d6185bff52bb5b20c (patch) | |
| tree | 9a0630aa7b1090830dbf899451bd8b1c839faa95 /Makefile | |
| parent | 615383ea18a3f0a35a310c8efe3f8666d5e1f275 (diff) | |
added Makefile and fixed estatico link
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..538cc76 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +ESTATICO_BIN=/home/miguel/git/estatico/.stack-work/install/x86_64-linux/lts-13.5/8.6.3/bin/estatico-exe +TARGET_DIR=/mnt/andromeda/htmlpub/softwarefools_com/ +SOURCE_DIR=$(shell pwd) +URL=https://softwarefools.com + +build: + - mkdir $(TARGET_DIR) + ${ESTATICO_BIN} $(SOURCE_DIR) $(TARGET_DIR) $(URL) +clean: + rm $(TARGET_DIR) -r |
