diff --git a/doc/Makefile b/doc/Makefile index 35077b81..f4abbcfb 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -31,7 +31,7 @@ EXAMPLES = $(wildcard examples/*.cpp) rm -fr tmp mkdir tmp cp $(SRCDIR)/json.hpp tmp - ./send_to_wandbox.py tmp $< > $@.tmp + scripts/send_to_wandbox.py tmp $< > $@.tmp /bin/echo -n "online" > $@ rm -fr tmp $@.tmp @@ -55,7 +55,7 @@ doxygen: create_output create_links gsed -i 's@< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType >@@g' html/*.html upload: clean doxygen check_output - cd html ; ../git-update-ghpages nlohmann/json + cd html ; ../scripts/git-update-ghpages nlohmann/json rm -fr html open http://nlohmann.github.io/json/ diff --git a/doc/git-update-ghpages b/doc/scripts/git-update-ghpages similarity index 100% rename from doc/git-update-ghpages rename to doc/scripts/git-update-ghpages diff --git a/doc/send_to_wandbox.py b/doc/scripts/send_to_wandbox.py similarity index 100% rename from doc/send_to_wandbox.py rename to doc/scripts/send_to_wandbox.py