summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--real.make4
1 files changed, 2 insertions, 2 deletions
diff --git a/real.make b/real.make
index acf656e..cce0306 100644
--- a/real.make
+++ b/real.make
@@ -120,7 +120,7 @@ GEN_SOURCES := \
GEN_HEADERS := \
$(patsubst %.ypp,%.hpp,${PARSERS})
REAL_SOURCES := $(shell cd ${SRC_DIR}; find src/ -name '*.cpp')
-REAL_HEADERS := $(shell cd ${SRC_DIR}; find src/ -name '*.hpp')
+REAL_HEADERS := $(shell cd ${SRC_DIR}; find src/ -name '*.hpp' -o -name '*.tcc')
SOURCES := ${GEN_SOURCES} ${REAL_SOURCES}
HEADERS := ${GEN_HEADERS} ${REAL_HEADERS}
DEPENDS := $(patsubst src/%.cpp,obj/%.d,${SOURCES})
@@ -332,7 +332,7 @@ else
endif
tags: ${SOURCES} ${HEADERS}
- ctags --totals --c-kinds=+px -f $@ $^
+ ctags --totals -h .tcc --langmap=C++:+.tcc --c-kinds=+px -f $@ $^
Makefile: ${SRC_DIR}/Makefile.in
@echo Makefile.in updated, reconfiguring ...