aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 5ceade2..5a3514a 100644
--- a/Makefile
+++ b/Makefile
@@ -29,11 +29,6 @@ all: $(PROG)
$(PROG): src/main.o src/input.o src/system.o src/utils.o
$(CC) -o $@ $^ $(__LIBS) $(LDFLAGS) $(LIBS)
-# Create cache and config directories at compile time since they will be used by
-# the user who compiled ftag
-# TODO: create this directories from "ftag init"
- mkdir -p $(FTAG_CACHE_DIR)
- mkdir -p $(FTAG_CONFIG_DIR)
src/main.o: src/main.c src/input.h src/system.h src/utils.h
src/input.o: src/input.c src/input.h