Update Makefile
Update Makefile so that the built website files are outside the source directory.
This commit is contained in:
parent
79269d471a
commit
114504a593
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -4,9 +4,14 @@
|
|||
|
||||
SWG=swg
|
||||
|
||||
all:
|
||||
all: output/
|
||||
$(SWG) src/en/
|
||||
mv src/en/output output/en
|
||||
$(SWG) src/pt/
|
||||
mv src/pt/output output/pt
|
||||
|
||||
output/:
|
||||
mkdir -p output/
|
||||
|
||||
clean:
|
||||
rm -rfv src/en/output src/pt/output
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue