Skip to content
This repository was archived by the owner on Jan 15, 2021. It is now read-only.

Commit ab6a500

Browse files
committed
Fix line endings
1 parent 3b9c8f8 commit ab6a500

File tree

322 files changed

+153946
-153946
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

322 files changed

+153946
-153946
lines changed

Makefile

+78-78
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,78 @@
1-
TARGET = out
2-
RELEASE = michal
3-
4-
all:
5-
(cd build; node boot.js)
6-
7-
clean:
8-
(cd build; node boot.js clean)
9-
10-
.PHONY: tags
11-
tags:
12-
strada-tags.pl */*.ts
13-
14-
deploy: main.js
15-
for f in css tutorial json; do \
16-
mkdir -p $(TARGET)/$$f; \
17-
cp -f $$f/* $(TARGET)/$$f/; \
18-
done
19-
cp main.js index.html $(TARGET)/
20-
21-
22-
.PHONY: pub
23-
24-
pub: all do-pub
25-
26-
p: all do-pub-small
27-
28-
do-pub:
29-
cmd /c "minify.bat runtime.js"
30-
cmd /c "minify.bat main.js"
31-
/c/dev/TouchStudio/Tools/DevUploader/bin/Debug/DevUploader.exe \
32-
-b:$(RELEASE) \
33-
touchdevelop.tgz \
34-
browser.js main.js tutorial icons css json index.html browsers.html app.manifest \
35-
runtime.js noderunner.js webapp.html cordova.js \
36-
error.html
37-
38-
do-pub-small:
39-
/c/dev/TouchStudio/Tools/DevUploader/bin/Debug/DevUploader.exe \
40-
-b:$(RELEASE) \
41-
browser.js main.js css index.html browsers.html app.manifest cordova.js \
42-
webapp.html error.html
43-
44-
r: all
45-
node noderunner 80 silent
46-
47-
rd: all
48-
node --max-stack-size=30 --debug noderunner 80
49-
50-
t: all
51-
node nodeclient buildtest
52-
53-
WEBAPP = wawqgkhb
54-
55-
w:
56-
mkdir -p webapp/css
57-
cp TouchApp/TouchApp/js/*.js webapp/
58-
cp runtime.js webapp/
59-
cp webapp.html webapp/index.html
60-
cp error.html browsers.html browser.js webapp/
61-
cp css/default.css webapp/css/
62-
node nodeclient compile $(WEBAPP)
63-
mv compiled.js webapp/precompiled.js
64-
65-
wp8: all
66-
cmd /c copywp8.cmd
67-
68-
TRG=deploy
69-
node-deploy:
70-
mkdir -p $(TRG)/json
71-
cp azure/* $(TRG)/
72-
cp json/apiData.js $(TRG)/json/
73-
cp noderunner.js $(TRG)/server.js
74-
date > $(TRG)/deploydate.txt
75-
cd $(TRG) && git add .
76-
cd $(TRG) && git commit -m "make deploy $(TRG)"
77-
cd $(TRG) && git push azure master
78-
@(echo; echo "***"; cat $(TRG)/deploydate.txt; echo "***")
1+
TARGET = out
2+
RELEASE = michal
3+
4+
all:
5+
(cd build; node boot.js)
6+
7+
clean:
8+
(cd build; node boot.js clean)
9+
10+
.PHONY: tags
11+
tags:
12+
strada-tags.pl */*.ts
13+
14+
deploy: main.js
15+
for f in css tutorial json; do \
16+
mkdir -p $(TARGET)/$$f; \
17+
cp -f $$f/* $(TARGET)/$$f/; \
18+
done
19+
cp main.js index.html $(TARGET)/
20+
21+
22+
.PHONY: pub
23+
24+
pub: all do-pub
25+
26+
p: all do-pub-small
27+
28+
do-pub:
29+
cmd /c "minify.bat runtime.js"
30+
cmd /c "minify.bat main.js"
31+
/c/dev/TouchStudio/Tools/DevUploader/bin/Debug/DevUploader.exe \
32+
-b:$(RELEASE) \
33+
touchdevelop.tgz \
34+
browser.js main.js tutorial icons css json index.html browsers.html app.manifest \
35+
runtime.js noderunner.js webapp.html cordova.js \
36+
error.html
37+
38+
do-pub-small:
39+
/c/dev/TouchStudio/Tools/DevUploader/bin/Debug/DevUploader.exe \
40+
-b:$(RELEASE) \
41+
browser.js main.js css index.html browsers.html app.manifest cordova.js \
42+
webapp.html error.html
43+
44+
r: all
45+
node noderunner 80 silent
46+
47+
rd: all
48+
node --max-stack-size=30 --debug noderunner 80
49+
50+
t: all
51+
node nodeclient buildtest
52+
53+
WEBAPP = wawqgkhb
54+
55+
w:
56+
mkdir -p webapp/css
57+
cp TouchApp/TouchApp/js/*.js webapp/
58+
cp runtime.js webapp/
59+
cp webapp.html webapp/index.html
60+
cp error.html browsers.html browser.js webapp/
61+
cp css/default.css webapp/css/
62+
node nodeclient compile $(WEBAPP)
63+
mv compiled.js webapp/precompiled.js
64+
65+
wp8: all
66+
cmd /c copywp8.cmd
67+
68+
TRG=deploy
69+
node-deploy:
70+
mkdir -p $(TRG)/json
71+
cp azure/* $(TRG)/
72+
cp json/apiData.js $(TRG)/json/
73+
cp noderunner.js $(TRG)/server.js
74+
date > $(TRG)/deploydate.txt
75+
cd $(TRG) && git add .
76+
cd $(TRG) && git commit -m "make deploy $(TRG)"
77+
cd $(TRG) && git push azure master
78+
@(echo; echo "***"; cat $(TRG)/deploydate.txt; echo "***")

ast/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
all:
2-
$(MAKE) -C ../editor
1+
all:
2+
$(MAKE) -C ../editor

0 commit comments

Comments
 (0)