Build tags in base directory for editors.

This commit is contained in:
Arthur Britto
2012-11-20 14:03:48 -08:00
parent 17a6b79ed9
commit a014bc5843
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -15,6 +15,7 @@
# Ignore object files.
*.o
build
tags
# Ignore locally installed node_modules
node_modules

View File

@@ -132,7 +132,7 @@ for file in RIPPLE_SRCS:
rippled = env.Program('build/rippled', RIPPLE_OBJS)
tags = env.CTags('build/obj/tags', RIPPLE_SRCS)
tags = env.CTags('tags', RIPPLE_SRCS)
Default(rippled, tags)