summaryrefslogtreecommitdiff
path: root/MSVC_NMake/create-lists.bat
blob: ef60d5ce11ef4f7471a8df13b96c72c4f477049b (plain)
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
@echo off
rem Simple .bat script for creating the NMake Makefile snippets.

if not "%1" == "header" if not "%1" == "file" if not "%1" == "footer" goto :error_cmd
if "%2" == "" goto error_no_destfile

if "%1" == "header" goto :header
if "%1" == "file" goto :addfile
if "%1" == "footer" goto :footer

:header
if "%3" == "" goto error_var
echo %3 =	\>>%2
goto done

:addfile
if "%3" == "" goto error_file
echo.	%3	\>>%2
goto done

:footer
echo.	$(NULL)>>%2
echo.>>%2
goto done

:error_cmd
echo Specified command '%1' was invalid.  Valid commands are: header file footer.
goto done

:error_no_destfile
echo Destination NMake snippet file must be specified
goto done

:error_var
echo A name must be specified for using '%1'.
goto done

:error_file
echo A file must be specified for using '%1'.
goto done

:done