From 180b6ab7c204ddf3a8aa2b9b022085e6a96ff99a Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Tue, 7 Jan 2025 02:24:19 +0400 Subject: program name changed to 'ash' --- Makefile | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 47a3dce..ce70bdb 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,16 @@ PREFIX ?= /usr/local +ash: src/main.go + go build -o ash ./src -gorth: src/main.go - go build -o gorth ./src - -install: gorth +install: ash mkdir -p ${DESTDIR}${PREFIX}/bin - cp -f gorth ${DESTDIR}${PREFIX}/bin + cp -f ash ${DESTDIR}${PREFIX}/bin uninstall: - rm -f ${DESTDIR}${PREFIX}/bin/gorth + rm -f ${DESTDIR}${PREFIX}/bin/ash clean: - rm -f gorth + rm -f ash .PHONY: test clean -- cgit v1.2.3