From 011e995ee05e3fd9a990a39c85d4b279e16fd86e Mon Sep 17 00:00:00 2001 From: Andy Spencer Date: Fri, 5 Oct 2012 05:42:25 +0000 Subject: [PATCH] Rename --- .gitignore | 2 +- config.mk.example | 2 +- makefile | 4 ++-- src/main.c | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index b2aac9a..01bc8a5 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,7 @@ *.swp *~ .vimrc -acal config.mk +lackey test tags diff --git a/config.mk.example b/config.mk.example index b323a2f..1942a0c 100644 --- a/config.mk.example +++ b/config.mk.example @@ -1 +1 @@ -default: run-acal +default: run-lackey diff --git a/makefile b/makefile index 0b6c98f..9040185 100644 --- a/makefile +++ b/makefile @@ -7,7 +7,7 @@ CPPFLAGS ?= -Isrc LDFLAGS ?= -lncursesw # Sources -PROG = acal +PROG = lackey TEST = test SOURCES = main screen util TESTS = test util @@ -18,7 +18,7 @@ all: $(PROG) $(TEST) run-$(PROG): $(PROG) @urxvt -e ./$< - @cat acal.log + @cat lackey.log run-$(TEST): $(TEST) ./$< diff --git a/src/main.c b/src/main.c index 9f6d511..1327a82 100644 --- a/src/main.c +++ b/src/main.c @@ -51,7 +51,7 @@ int debug(char *fmt, ...) /* Open log file */ if (!debug_fd) - debug_fd = fopen("acal.log", "w+"); + debug_fd = fopen("lackey.log", "w+"); /* Log to debug file */ va_start(ap, fmt); -- 2.43.2