77d8eec65a6d272eeee78097bf5a526d3a45059d
fenris foo

fenris authored 7 years ago

1) all: build/draft.html build/draft.css build/draft.js build/logo.svg build/favicon.png
fenris build-system

fenris authored 8 years ago

2) .PHONY: all
fenris first commit

fenris authored 8 years ago

3) 
fenris build-system

fenris authored 8 years ago

4) clean: 
5) 	@ rm --recursive --force temp
6) .PHONY: clean
fenris first commit

fenris authored 8 years ago

7) 
fenris build-system

fenris authored 8 years ago

8) clear: clean
9) 	@ rm --recursive --force build
10) .PHONY: clear
11) 
Christian Fraß renamed structure to content

Christian Fraß authored 7 years ago

12) build/draft.html: source/data/phonology_and_orthography.json source/data/personal_pronouns.json source/data/word_functions.json source/data/timeforms.json source/data/adpositions.json source/data/correlatives.json source/data/x.json source/logic/server/misc.php source/logic/server/data.php source/logic/server/settings.php source/logic/server/table.php source/logic/server/sql.php source/content/draft.html.php source/content/meta.html.php source/content/introduction.html.php source/content/preface.html.php source/content/key_parameters.html.php source/content/toc.html.php source/content/basics.html.php source/content/phonology_and_orthography.html.php source/content/grammar.html.php source/content/personal_pronouns.html.php source/content/correlatives.html.php source/content/conjugation.html.php source/content/infinite_verbforms.html.php source/content/tempora_and_modi.html.php source/content/declension.html.php source/content/attributes.html.php source/content/sentence_structure.html.php source/content/vocabulary.html.php source/content/principles.html.php source/content/word_functions.html.php source/content/adpositions.html.php source/content/pronouns.html.php source/content/dictionary.html.php
bfadmin-master advanced

bfadmin-master authored 7 years ago

13) 	@ echo -e '-- composing document ...'
fenris moved to html

fenris authored 7 years ago

14) 	@ mkdir --parents build
Christian Fraß renamed structure to content

Christian Fraß authored 7 years ago

15) 	@ php source/content/draft.html.php > build/draft.html
fenris first commit

fenris authored 8 years ago

16) 
bfadmin-master advanced

bfadmin-master authored 7 years ago

17) build/draft.js: source/logic/client/tools.js source/logic/client/table.js source/logic/client/toc.js source/logic/client/main.js
18) 	@ echo -e '-- composing client-logic ...'
fenris advanced

fenris authored 7 years ago

19) 	@ mkdir --parents build
bfadmin-master advanced

bfadmin-master authored 7 years ago

20) 	@ cat source/logic/client/tools.js source/logic/client/table.js source/logic/client/toc.js source/logic/client/main.js > build/draft.js
fenris advanced

fenris authored 7 years ago

21) 
fenris moved to html

fenris authored 7 years ago

22) build/logo.svg: source/media/logo.svg
23) 	@ echo -e '-- copying logo ...'
24) 	@ mkdir --parents build
25) 	@ cp --recursive source/media/logo.svg build/logo.svg
26) 
fenris foo

fenris authored 7 years ago

27) build/favicon.png: source/media/folksprak_16x16.png
28) 	@ echo -e '-- copying favicon ...'
29) 	@ mkdir --parents build
30) 	@ cp --recursive source/media/folksprak_16x16.png build/favicon.png
31) 
bfadmin-master minor changes

bfadmin-master authored 7 years ago

32) build/draft.css: source/style/functions.less source/style/theme.less source/style/common.less source/style/concrete.less
fenris moved to html

fenris authored 7 years ago

33) 	@ echo -e '-- compiling style ...'
34) 	@ mkdir --parents temp
bfadmin-master minor changes

bfadmin-master authored 7 years ago

35) 	@ cat source/style/functions.less source/style/theme.less source/style/common.less source/style/concrete.less > temp/draft.less
fenris build-system

fenris authored 8 years ago

36) 	@ mkdir --parents build
Fenris Wolf advanced

Fenris Wolf authored 7 years ago

37) 	@ lessc temp/draft.less > build/draft.css