update lua documentation tools

This commit is contained in:
Robin Gareus
2016-04-11 16:16:52 +02:00
parent 957a18f635
commit 4eba3869fe
4 changed files with 146 additions and 28 deletions

18
tools/doxy2json/Makefile Normal file
View File

@@ -0,0 +1,18 @@
TARGET=doxy2json
CXX=clang++
CXXFLAGS=`llvm-config --cxxflags --ldflags` -lclang -std=c++11 -O2 -Wall -Wextra -pthread
LOADLIBES=-lclang
ifeq ($(shell uname -s), Darwin)
CXXFLAGS+=-stdlib=libstdc++
endif
all: $(TARGET)
$(TARGET): $(TARGET).cc
clean:
@rm -f $(TARGET)
.PHONY: test