aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--Makefile3
2 files changed, 4 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 61e2312..6cecd6d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
-src/ftag
+ftag
*.o
ftag.sqlite3
files/
+ftag_root/
diff --git a/Makefile b/Makefile
index 8028648..acb88db 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-export FTAG_ROOT ?= $(shell pwd)/ftag
+export FTAG_ROOT ?= $(shell pwd)/ftag_root
export PROG ?= ftag
export CFLAGS ?= -O0 -g3
export LDFLAGS ?=
@@ -14,6 +14,7 @@ all: $(PROG)
$(PROG):
make -C src
+ mv src/$(PROG) ./
clean:
make -C src clean