mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
524 B
16 lines
524 B
#
|
|
# Copy the stub files over. Then, if the amd64 files are on this machine,
|
|
# copy them over the top.
|
|
#
|
|
|
|
amd64clean:
|
|
-del ..\i386\amd64.c >nul 2>nul
|
|
-del ..\i386\amd64x86.c >nul 2>nul
|
|
-del ..\i386\amd64s.asm >nul 2>nul
|
|
|
|
amd64stub: amd64clean
|
|
copy ..\i386\amd64_stub.c ..\i386\amd64.c >nul 2>nul
|
|
copy ..\i386\amd64x86_stub.c ..\i386\amd64x86.c >nul 2>nul
|
|
copy ..\i386\amd64s_stub.asm ..\i386\amd64s.asm >nul 2>nul
|
|
if exist ..\amd64\amd64.c copy ..\amd64\amd64*.* ..\i386 >nul 2>nul
|
|
|