mirror of https://github.com/stella-emu/stella.git
Remove Readme.txt, replace with README.md (which contains the former).
This commit is contained in:
parent
3629a264bc
commit
35e0cf7a67
2
Makefile
2
Makefile
|
@ -317,7 +317,7 @@ install: all
|
||||||
$(INSTALL) -d "$(DESTDIR)$(BINDIR)"
|
$(INSTALL) -d "$(DESTDIR)$(BINDIR)"
|
||||||
$(INSTALL) -c -m 755 "$(srcdir)/stella$(EXEEXT)" "$(DESTDIR)$(BINDIR)/stella$(EXEEXT)"
|
$(INSTALL) -c -m 755 "$(srcdir)/stella$(EXEEXT)" "$(DESTDIR)$(BINDIR)/stella$(EXEEXT)"
|
||||||
$(INSTALL) -d "$(DESTDIR)$(DOCDIR)"
|
$(INSTALL) -d "$(DESTDIR)$(DOCDIR)"
|
||||||
$(INSTALL) -c -m 644 "$(srcdir)/Announce.txt" "$(srcdir)/Changes.txt" "$(srcdir)/Copyright.txt" "$(srcdir)/License.txt" "$(srcdir)/README-SDL.txt" "$(srcdir)/Readme.txt" "$(srcdir)/Todo.txt" "$(srcdir)/docs/index.html" "$(srcdir)/docs/debugger.html" "$(DESTDIR)$(DOCDIR)/"
|
$(INSTALL) -c -m 644 "$(srcdir)/Announce.txt" "$(srcdir)/Changes.txt" "$(srcdir)/Copyright.txt" "$(srcdir)/License.txt" "$(srcdir)/README-SDL.txt" "$(srcdir)/README.md" "$(srcdir)/Todo.txt" "$(srcdir)/docs/index.html" "$(srcdir)/docs/debugger.html" "$(DESTDIR)$(DOCDIR)/"
|
||||||
$(INSTALL) -d "$(DESTDIR)$(DOCDIR)/graphics"
|
$(INSTALL) -d "$(DESTDIR)$(DOCDIR)/graphics"
|
||||||
$(INSTALL) -c -m 644 $(wildcard $(srcdir)/docs/graphics/*.png) "$(DESTDIR)$(DOCDIR)/graphics"
|
$(INSTALL) -c -m 644 $(wildcard $(srcdir)/docs/graphics/*.png) "$(DESTDIR)$(DOCDIR)/graphics"
|
||||||
$(INSTALL) -d "$(DESTDIR)$(DATADIR)/applications"
|
$(INSTALL) -d "$(DESTDIR)$(DATADIR)/applications"
|
||||||
|
|
10
Readme.txt
10
Readme.txt
|
@ -1,10 +0,0 @@
|
||||||
Stella is a multi-platform Atari 2600 VCS emulator which allows you to
|
|
||||||
play all of your favourite Atari 2600 games on your PC. You'll find the
|
|
||||||
Stella Users Manual in the docs subdirectory. If you'd like to verify
|
|
||||||
that you have the latest release of Stella, visit the Stella Website at:
|
|
||||||
|
|
||||||
https://stella-emu.github.io
|
|
||||||
|
|
||||||
Enjoy,
|
|
||||||
|
|
||||||
The Stella Team
|
|
|
@ -2,7 +2,7 @@ Announce.txt
|
||||||
Changes.txt
|
Changes.txt
|
||||||
Copyright.txt
|
Copyright.txt
|
||||||
README-SDL.txt
|
README-SDL.txt
|
||||||
Readme.txt
|
README.md
|
||||||
docs/*.html
|
docs/*.html
|
||||||
docs/graphics/*.png
|
docs/graphics/*.png
|
||||||
Todo.txt
|
Todo.txt
|
||||||
|
|
|
@ -23,7 +23,7 @@ echo "Mounting ${DMG} file ..."
|
||||||
hdiutil attach "${DMG}"
|
hdiutil attach "${DMG}"
|
||||||
|
|
||||||
echo "Copying documentation ..."
|
echo "Copying documentation ..."
|
||||||
ditto ../../Announce.txt ../../Changes.txt ../../Copyright.txt ../../License.txt ../../Readme.txt ../../Todo.txt "${DISK}"
|
ditto ../../Announce.txt ../../Changes.txt ../../Copyright.txt ../../License.txt ../../README.md ../../Todo.txt "${DISK}"
|
||||||
|
|
||||||
echo "Copying application ..."
|
echo "Copying application ..."
|
||||||
cp -r DerivedData/Build/Products/Release/Stella.app "${DISK}"
|
cp -r DerivedData/Build/Products/Release/Stella.app "${DISK}"
|
||||||
|
|
|
@ -39,9 +39,9 @@ set RELEASE_32=Win32\Release
|
||||||
set RELEASE_64=x64\Release
|
set RELEASE_64=x64\Release
|
||||||
|
|
||||||
echo.
|
echo.
|
||||||
set /p STELLA_VER=Enter Stella version:
|
set /p STELLA_VER=Enter Stella version:
|
||||||
echo.
|
echo.
|
||||||
set /p TO_BUILD=Version to build (32/64/a=all):
|
set /p TO_BUILD=Version to build (32/64/a=all):
|
||||||
|
|
||||||
set BUILD_32=0
|
set BUILD_32=0
|
||||||
set BUILD_64=0
|
set BUILD_64=0
|
||||||
|
@ -102,7 +102,7 @@ copy ..\..\..\Announce.txt %STELLA_DIR%\docs
|
||||||
copy ..\..\..\Changes.txt %STELLA_DIR%\docs
|
copy ..\..\..\Changes.txt %STELLA_DIR%\docs
|
||||||
copy ..\..\..\Copyright.txt %STELLA_DIR%\docs
|
copy ..\..\..\Copyright.txt %STELLA_DIR%\docs
|
||||||
copy ..\..\..\License.txt %STELLA_DIR%\docs
|
copy ..\..\..\License.txt %STELLA_DIR%\docs
|
||||||
copy ..\..\..\Readme.txt %STELLA_DIR%\docs
|
copy ..\..\..\Readme.md %STELLA_DIR%\docs
|
||||||
copy ..\..\..\README-SDL.txt %STELLA_DIR%\docs
|
copy ..\..\..\README-SDL.txt %STELLA_DIR%\docs
|
||||||
copy ..\..\..\Todo.txt %STELLA_DIR%\docs
|
copy ..\..\..\Todo.txt %STELLA_DIR%\docs
|
||||||
if %HAVE_FLIP% == 1 (
|
if %HAVE_FLIP% == 1 (
|
||||||
|
@ -142,4 +142,4 @@ rmdir %STELLA_DIR% /s /q
|
||||||
|
|
||||||
:done
|
:done
|
||||||
echo.
|
echo.
|
||||||
pause 5
|
pause 5
|
||||||
|
|
Loading…
Reference in New Issue