removing unused function: drawReminder

This commit is contained in:
Roland Hollós
2021-10-02 09:43:05 +02:00
parent 84c5c89a70
commit 585390485c
2 changed files with 2 additions and 29 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
TARGET=fiboBG
DEST=$(HOME)/.local/bin #local install
DEST=$(HOME)/.local/bin/ #local install
#DES=/usr/local #global install
SRC=main.c
# DEBUG=-g
@@ -7,6 +7,6 @@ DEBUG=
$(TARGET): main.c config.h
gcc -Wall -Wextra -pedantic $(DEBUG) $(SRC) `pkg-config --cflags --libs cairo x11` -o $(TARGET) -lm
install:
cp $(TARGET) $(DEST)/
cp $(TARGET) $(DEST)
uninstall:
rm $(DEST)/$(TARGET)