update flags to ctags

This commit is contained in:
Kyle Isom 2023-10-12 22:55:34 -07:00
parent 5a9c09b217
commit 8edcba0f88
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -12,6 +12,7 @@ build
core core
core.* core.*
cmake-build-* cmake-build-*
tags
ke ke
kge kge

View File

@ -44,7 +44,7 @@ clean:
rm -f *.o $(TARGET) rm -f *.o $(TARGET)
tags: $(SOURCES) tags: $(SOURCES)
ctags --declarations -o $@ $(SOURCES) ctags -o $@ $(SOURCES)
ke: $(OBJS) ke: $(OBJS)
$(CXX) -o $@ $(CXXFLAGS) $(LDFLAGS) $(OBJS) $(CXX) -o $@ $(CXXFLAGS) $(LDFLAGS) $(OBJS)