summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--Makefile7
2 files changed, 6 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index eb4a997c5..e4cb43383 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,3 +22,4 @@ cabal-dev
# OSX related
.DS_Store
.virthualenv
+tags
diff --git a/Makefile b/Makefile
index 41ebc7dc6..cb0becfe3 100644
--- a/Makefile
+++ b/Makefile
@@ -120,6 +120,9 @@ testcoverage:
@hpc markup test --exclude=Main --exclude=QC --destdir=.hpc >/dev/null
@echo "(See .hpc/ for test coverage details.)"
+tags:
+ ~/.cabal/bin/hasktags .
+
# If ikiwiki is available, build static html docs suitable for being
# shipped in the software package.
ifeq ($(shell which ikiwiki),)
@@ -139,7 +142,7 @@ docs: $(mans)
clean:
rm -rf $(GIT_ANNEX_TMP_BUILD_DIR) $(bins) $(mans) test configure *.tix .hpc $(sources) \
- doc/.ikiwiki html dist $(clibs) build-stamp
+ doc/.ikiwiki html dist $(clibs) build-stamp tags
sdist: clean $(mans)
./Build/make-sdist.sh
@@ -216,4 +219,4 @@ osxapp:
getflags:
@echo $(ALLFLAGS) $(clibs)
-.PHONY: $(bins) test install
+.PHONY: $(bins) test install tags