initial commit taken from gitlab.lrz.de

This commit is contained in:
privatereese
2018-08-24 18:09:42 +02:00
parent ae54ed4c48
commit fc05486403
28494 changed files with 2159823 additions and 0 deletions

19
node_modules/art/lib/slick/Makefile generated vendored Normal file
View File

@@ -0,0 +1,19 @@
MODULES = 'Source/Slick.Parser.js' \
'Source/Slick.Finder.js'
FILE = 'slick.js'
test: setup kill_servers
@python -m SimpleHTTPServer 7777 &> /dev/null &
@open http://localhost:7777/SlickSpec/Runner/runner.html
kill_servers:
@ps aux | grep "SimpleHTTPServer 7777" | grep -v grep | awk '{ print $$2 }' | xargs kill -9 &> /dev/null
setup:
@git submodule update --init --recursive
build:
@cat ${MODULES} > ${FILE}