mirror of https://github.com/PCSX2/pcsx2.git
DEV9ghzdrk: These files aren't needed.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5596 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
90f0da8ec2
commit
6ac678d34f
|
@ -1,4 +1,4 @@
|
|||
; DEV9null.def : Declares the module parameters for the DLL.
|
||||
; DEV9ghzdrk.def : Declares the module parameters for the DLL.
|
||||
|
||||
EXPORTS
|
||||
|
||||
|
|
|
@ -1,50 +0,0 @@
|
|||
::@echo off
|
||||
::
|
||||
:: Usage: postBuild.cmd SourcePath DestFile DestExt {plugins}
|
||||
::
|
||||
:: SourcePath - $(TargetPath) - Fully qualified path of the generated target file.
|
||||
:: DestFile - Base filename of the target/dest, without extension!
|
||||
:: DestExt - Extension of the target/dest!
|
||||
:: plugins - optional parameter used to generate plugins into the /plugins folder
|
||||
::
|
||||
:: The destination file is determined by the PCSX2_TARGET_DIR environment var.
|
||||
|
||||
SETLOCAL ENABLEEXTENSIONS
|
||||
if defined PCSX2_TARGET_COPY CALL :TestAndCopy "%PCSX2_TARGET_COPY%" %1 %2 %3 %4
|
||||
ENDLOCAL
|
||||
exit 0
|
||||
|
||||
|
||||
:TestAndCopy
|
||||
:: Subroutine. First parameter is our Target Dir. Since it's a parameter into
|
||||
:: the subroutine, we can use tilda expansion to handle quotes correctly. :)
|
||||
|
||||
if NOT EXIST "%~1" (
|
||||
md "%~1"
|
||||
)
|
||||
|
||||
:: Error checking. Try to change to the dir. If it fails, it means the dir is
|
||||
:: actually a file, and we should cancel the script.
|
||||
|
||||
set mycwd="%CD%"
|
||||
cd "%~1"
|
||||
if %ERRORLEVEL% NEQ 0 goto :eof
|
||||
cd %mycwd%
|
||||
|
||||
set pcsxoutdir=%~1\%~5
|
||||
set pcsxoutname=%pcsxoutdir%\%~3%4
|
||||
set pcsxnewname=%pcsxoutdir%\%~3-r0%4
|
||||
|
||||
IF NOT EXIST "%pcsxoutdir%" (
|
||||
md "%pcsxoutdir%"
|
||||
)
|
||||
|
||||
copy /Y "%~2" "%pcsxoutname%"
|
||||
copy /Y "%~2" "%pcsxnewname%"
|
||||
if %ERRORLEVEL% EQU 0 (
|
||||
echo Target copied to %pcsxnewname%
|
||||
)
|
||||
|
||||
goto :eof
|
||||
|
||||
:quit
|
|
@ -1,33 +0,0 @@
|
|||
/* PCSX2 - PS2 Emulator for PCs
|
||||
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
||||
*
|
||||
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
||||
* of the GNU Lesser General Public License as published by the Free Software Found-
|
||||
* ation, either version 3 of the License, or (at your option) any later version.
|
||||
*
|
||||
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
* PURPOSE. See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with PCSX2.
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
// svnrev_template.h --> svnrev.h
|
||||
//
|
||||
// This file acts as a template for the automatic SVN revision/version tag.
|
||||
// It is used by the utility SubWCrev.exe to create an "svnrev.h" file for
|
||||
// whichever project is being compiled (as indicated by command line options
|
||||
// passed to SubWCRev.exe during the project's pre-build step).
|
||||
//
|
||||
// The SubWCRev.exe utility is part of TortoiseSVN and requires several DLLs
|
||||
// installed by TortoiseSVN, so it will only be available if you have TortoiseSVN
|
||||
// installed on your system. If you do not have it installed, a generic template
|
||||
// is used instead (see svnrev_generic.h). Having TortoiseSVN is handy but not
|
||||
// necessary. If you do not have it installed, everything will still compile
|
||||
// fine except without the SVN revision tagged to the application/dll version.
|
||||
//
|
||||
// TortoiseSVN can be downloaded from http://tortoisesvn.tigris.org
|
||||
|
||||
#define SVN_REV 0
|
||||
#define SVN_MODS 0
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue