diff --git a/Makefile b/Makefile index a4fec8e..e1caa5b 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,6 @@ main.o: clean: rm -f *.o rm -f todd - rm /usr/local/bin/todd || true todd: todo.o main.o $(CC) $(CFLAGS) todo.o main.o -lncurses -o todd @@ -21,3 +20,6 @@ all: todd install: todd cp todd /usr/local/bin/todd + +uninstall: + rm /usr/local/bin/todd || true