summaryrefslogtreecommitdiff
path: root/support/lgrind/example/c2tex.bat
blob: f4b4a2fbc2008f92b792b32f55a445fc2de3fa24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@echo off
rem convert .c to .lg 
if not exist %1.c goto Complain

lgrind -i -v subst %1.c > %1.lg
echo Created %1.lg
goto Done

:Complain
echo '%1.c' does not exist.

:Done