From 991003c634a50e98b6cedc1f46aea8ccb1aa3c56 Mon Sep 17 00:00:00 2001 From: Huck Boles Date: Sat, 26 Nov 2022 17:17:41 -0600 Subject: [PATCH] Make instructions --- Makefile | 13 ------------- README.md | 3 ++- 2 files changed, 2 insertions(+), 14 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 3c990fc..0000000 --- a/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -SHELL = /bin/bash -PROG = odot -BINDIR ?= /usr/bin -STATEDIR ?= $(HOME)/.local/state - - -install : main.c - sudo gcc main.c -o '$(BINDIR)/$(PROG)' - [[ ! -d '$(STATEDIR)/$(PROG))' ]] && mkdir -p '$(STATEDIR)/$(PROG)' - -clean : - rm -rf '$(STATEDIR)/$(PROG)' - diff --git a/README.md b/README.md index 37e8e90..15bcad2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,8 @@ current todo list in alphabetical order. $ git clone https://github.com/huboles/odot.git $ cd odot - $ make install + $ sudo cc main.c -o /usr/bin/odot + $ mkdir $HOME/.local/state/odot ***odot*** stores current and completed tasks in plaintext .txt files, located at $HOME/.local/state/odot. -- 2.44.2