From 3502382e0533d4e4e6f46e6a48cfbe53d1c0ff4c Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Sat, 18 Apr 2020 21:53:07 +0200 Subject: [PATCH] simplified makefile --- Makefile | 5 ++++- config.mk | 6 ------ 2 files changed, 4 insertions(+), 7 deletions(-) delete mode 100644 config.mk diff --git a/Makefile b/Makefile index ef14d6c..3925934 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,10 @@ # bthandler # See LICENSE file for copyright and license details. -include config.mk +VERSION = 1.0 + +# paths +PREFIX = ~/.local/bin SRC = bthandler OBJ = $(SRC:.c=.o) diff --git a/config.mk b/config.mk deleted file mode 100644 index 407a87e..0000000 --- a/config.mk +++ /dev/null @@ -1,6 +0,0 @@ -# dmenu version -VERSION = 1.0 - -# paths -PREFIX = ~/.local/bin -