create basic git questions
[3501/git-tests] / makefile
1 # tldr; AGPLv3+
2 # copyright info at bottom
3
4 all:basic-git.html
5
6 .PHONY: autobuild
7 autobuild: makefile
8 ./autobuild.bash
9
10 %.html: %.org makefile
11 @pandoc $< --from org --to html --output $@
12
13 clean:
14 @rm -f \
15 *.html
16
17 # Copyright 2016 daniel watson
18
19 # This file is part of 3501-git-tests.
20
21 # 3501-git-tests is free software: you can redistribute it and/or modify
22 # it under the terms of the GNU Affero General Public License as
23 # published by the Free Software Foundation, either version 3 of the
24 # License, or (at your option) any later version.
25
26 # 3501-git-tests is distributed in the hope that it will be useful,
27 # but WITHOUT ANY WARRANTY; without even the implied warranty of
28 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 # GNU Affero General Public License for more details.
30
31 # You should have received a copy of the GNU Affero General Public
32 # License along with 3501-git-tests. If not, see
33 # <http://www.gnu.org/licenses/>.