Browse Source

Handle Output directory better

Git refuses to store empty directories.  So, build scripts modified to
create Output directory as needed.
patch
Wayne Warthen 11 years ago
parent
commit
63c0289e28
  1. 5
      Build.cmd
  2. 2
      BuildImages.cmd
  3. 2
      Clean.cmd

5
Build.cmd

@ -1,4 +1,9 @@
@echo off
setlocal
if not exist Output md Output
cd Source
call Build %*

2
BuildImages.cmd

@ -1,4 +1,6 @@
@echo off
setlocal
if not exist Output md Output
pushd Images && Build && popd

2
Clean.cmd

@ -8,4 +8,4 @@ pushd Images && call Clean && popd
if exist *.img del *.img /Q
if exist *.log del *.log /Q
if exist Output\*.* del Output\*.* /Q
if exist Output rd /s /q Output
Loading…
Cancel
Save