update lua documentation tools
This commit is contained in:
18
tools/doxy2json/Makefile
Normal file
18
tools/doxy2json/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user