forked from agile-france/site-2013
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.bat
71 lines (58 loc) · 1.56 KB
/
make.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@ECHO OFF
set PELICAN=pelican
set PELICANOPTS=
set BASEDIR=%~dp0
set INPUTDIR=%BASEDIR%\content
set OUTPUTDIR=%BASEDIR%\output
set CONFFILE=%BASEDIR%\pelicanconf.py
set PUBLISHCONF=%BASEDIR%\publishconf.py
if not exist "%OUTPUTDIR%\NUL" mkdir "%OUTPUTDIR%"
if "%1" == "" goto help
if "%1" == "help" (
:help
@echo.Makefile for a pelican Web site
@echo.
@echo.Usage:
@echo. make html ^(re^)generate the web site
@echo. make clean remove the generated files
@echo. make regenerate regenerate files upon modification
@echo. make publish generate using production settings
@echo. make serve serve site at http://localhost:8000
@echo. make devserver start/restart develop_server.sh
@echo.
goto end
)
if "%1" == "html" (
call :clean
"%PELICAN%" "%INPUTDIR%" -o "%OUTPUTDIR%" -s "%CONFFILE%" %PELICANOPTS%
if errorlevel 1 exit /b 1
echo.Done
goto end
)
if "%1" == "clean" (
:clean
for /d %%i in ("%OUTPUTDIR%\*") do rmdir /q /s %%i
del /q /s "%OUTPUTDIR%\*"
goto end
)
if "%1" == "regenerate" (
call :clean
"%PELICAN%" -r "%INPUTDIR%" -o "%OUTPUTDIR%" -s "%CONFFILE%" ß%PELICANOPTS%
if errorlevel 1 exit /b 1
echo.Done
goto end
)
if "%1" == "serve" (
%comspec% /c "cd ""%OUTPUTDIR%"" && python -m SimpleHTTPServer"
goto end
)
if "%1" == "devserver" (
"%BASEDIR%\develop_server.bat" restart
goto end
)
if "%1" == "publish" (
"%PELICAN%" "%INPUTDIR%" -o "%OUTPUTDIR%" -s "%PUBLISHCONF%" %PELICANOPTS%
goto end
)
call :help
:end