summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2025-01-19 20:02:29 +0400
committerSuleyman Farajli <suleyman@farajli.net>2025-01-19 20:02:29 +0400
commit999d26eb5b7fcd96feadde6ca9ee9900ac8179af (patch)
tree0b9545e4a97906a1350f6934b8f08682199f2019 /Makefile
parent8d0fc4dd5f70bc829f4f73b70246c02bc3f8168c (diff)
program name changed to `marp`
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index ce70bdb..070c19c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,17 @@
PREFIX ?= /usr/local
-ash: src/main.go
- go build -o ash ./src
+marp: src/main.go
+ go build -o marp ./src
-install: ash
+install: marp
mkdir -p ${DESTDIR}${PREFIX}/bin
- cp -f ash ${DESTDIR}${PREFIX}/bin
+ cp -f marp ${DESTDIR}${PREFIX}/bin
+ cp -f lib/std.marp ${DESTDIR}${PREFIX}/bin
uninstall:
- rm -f ${DESTDIR}${PREFIX}/bin/ash
+ rm -f ${DESTDIR}${PREFIX}/bin/marp
clean:
- rm -f ash
+ rm -f marp
.PHONY: test clean