You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
22 lines
724 B
22 lines
724 B
@echo off |
|
|
|
REM ---------------------------------------------------------------------- |
|
REM Windows cleanup batch file for the GLFW documentation. |
|
REM ---------------------------------------------------------------------- |
|
|
|
REM GLFW Reference Manual |
|
if exist glfwrm.dvi del glfwrm.dvi |
|
if exist glfwrm.aux del glfwrm.aux |
|
if exist glfwrm.log del glfwrm.log |
|
if exist glfwrm.out del glfwrm.out |
|
if exist glfwrm.pdf del glfwrm.pdf |
|
if exist glfwrm.toc del glfwrm.toc |
|
if exist glfwrm.lot del glfwrm.lot |
|
|
|
REM GLFW Users Guide |
|
if exist glfwug.dvi del glfwug.dvi |
|
if exist glfwug.aux del glfwug.aux |
|
if exist glfwug.log del glfwug.log |
|
if exist glfwug.out del glfwug.out |
|
if exist glfwug.pdf del glfwug.pdf |
|
if exist glfwug.toc del glfwug.toc
|
|
|