aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2024-05-20 20:20:20 +0200
committerJoe <rbo@gmx.us>2024-05-20 20:20:20 +0200
commitaabd410f94612ba55a9b93ba14ef18a8086c91c7 (patch)
tree9c6e25d6240bd5c5b71b0ce232a4440a52955d45 /Makefile
parentbugfix (diff)
downloadhardflip-aabd410f94612ba55a9b93ba14ef18a8086c91c7.tar.gz
hardflip-aabd410f94612ba55a9b93ba14ef18a8086c91c7.tar.bz2
hardflip-aabd410f94612ba55a9b93ba14ef18a8086c91c7.tar.xz
hardflip-aabd410f94612ba55a9b93ba14ef18a8086c91c7.tar.zst
hardflip-aabd410f94612ba55a9b93ba14ef18a8086c91c7.zip
up
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 77c9f62..220a375 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,6 @@ SRC_NAME := *.go
CONF_DIR := ./src/
SRC := $(addprefix ${SRC_DIR}, ${SRC_NAME})
DEST := /usr
-XDG_CONFIG_HOME ?= $(HOME)/.config
.DEFAULT_GOAL := ${TARGET}
run: ${SRC}
@@ -33,14 +32,11 @@ ${TARGET}: ${SRC}
go build -o ${TARGET} ${SRC_DIR}
install:
- # mkdir -p ${DEST}/bin
- # cp -f ${TARGET} ${DEST}/bin
+ mkdir -p ${DEST}/bin
+ cp -f ${TARGET} ${DEST}/bin
# man shit
# mkdir -p $(DESTDIR)/share/man/man1
# cp -f man/lowbat.1 $(DESTDIR)/share/man/man1/lowbat.1
- # mkdir -p $(XDG_CONFIG_HOME)/hf
- # cp -f $(CONF_DIR)/* $(XDG_CONFIG_HOME)/hf
- # cp -f $(CONF_DIR)/config.sample.yml $(XDG_CONFIG_HOME)/config.yml
clean:
go clean