Skip to content

Commit

Permalink
[build] Declutter the root directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Brown committed Oct 28, 2009
1 parent a996b39 commit 1ddd23e
Show file tree
Hide file tree
Showing 25 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion setup.bat → bin/setup.bat
Expand Up @@ -5,7 +5,7 @@ if "%PROCESSOR_ARCHITECTURE%"=="x86" set cpu=i386
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" set cpu=amd64
if "%cpu%"=="" goto cpuerror

%0\..\bin\%cpu%\setup.exe
%0\..\%cpu%\setup.exe
goto :end

:cpuerror
Expand Down
4 changes: 0 additions & 4 deletions clean.bat

This file was deleted.

File renamed without changes.
4 changes: 4 additions & 0 deletions src/clean.bat
@@ -0,0 +1,4 @@
@echo off

del /q ..\bin\i386\*.*
del /q ..\bin\amd64\*.*
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion driver/sources → src/driver/sources
Expand Up @@ -2,7 +2,7 @@ TARGETNAME = sanbootconf

TARGETTYPE = DRIVER

TARGETPATH = ..\bin
TARGETPATH = ..\..\bin

TARGETLIBS = $(DDK_LIB_PATH)\ndis.lib $(DDK_LIB_PATH)\ntstrsafe.lib $(DDK_LIB_PATH)\wdmsec.lib

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion installer/sources → src/installer/sources
Expand Up @@ -2,7 +2,7 @@ TARGETNAME = setup

TARGETTYPE = PROGRAM

TARGETPATH = ..\bin
TARGETPATH = ..\..\bin

TARGETLIBS = $(DDK_LIB_PATH)\setupapi.lib \
$(DDK_LIB_PATH)\newdev.lib
Expand Down
4 changes: 2 additions & 2 deletions testsign.bat → src/testsign.bat
Expand Up @@ -5,10 +5,10 @@ if "%ddkdir%" == "" set ddkdir=C:\WinDDK\6001.18002
for /f "delims=" %%i in ('cd') do set cwd=%%i

set setenv=%ddkdir%\bin\setenv.bat %ddkdir% chk wnet x64
set cert=%cwd%\bin\testcer.cer
set cert=%cwd%\..\bin\testcer.cer

if not exist %cert% cmd /c "%setenv% && makecert -r -pe -ss PrivateCertStore -n CN=fensystems.co.uk %cert% && certmgr /add %cert% /s /r localMachine root && certmgr /add %cert% /s /r localMachine trustedpublisher" || exit /b 1
bcdedit -set TestSigning on || exit /b 1
bcdedit -set NoIntegrityChecks on || exit /b 1

cmd /c "%setenv% && signtool sign /s PrivateCertStore /n fensystems.co.uk /t http://timestamp.verisign.com/scripts/timestamp.dll %cwd%\bin\i386\*.sys %cwd%\bin\amd64\*.sys " || exit /b 1
cmd /c "%setenv% && signtool sign /s PrivateCertStore /n fensystems.co.uk /t http://timestamp.verisign.com/scripts/timestamp.dll %cwd%\..\bin\i386\*.sys %cwd%\..\bin\amd64\*.sys " || exit /b 1

0 comments on commit 1ddd23e

Please sign in to comment.