-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't generate releases for DOS and DOS32
- Loading branch information
David Kinder
committed
Dec 19, 2023
1 parent
562bebf
commit c8ee6f8
Showing
1 changed file
with
10 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
@echo off | ||
|
||
"\Program Files\Zip\zip" -j \Temp\MagneticDOS.zip COPYING Dos\*.exe Dos\*.fnt Dos\magnetic.txt | ||
"%ProgramFiles(x86)%\Zip\zip" -j \Temp\MagneticWin.zip COPYING Win\Release\*.exe Win\Release\*.chm | ||
|
||
"\Program Files\Zip\zip" -j \Temp\MagneticDOS32.zip COPYING Dos32\magnetic.exe Dos32\*.fnt | ||
"\Program Files\Zip\zip" -j \Temp\MagneticDOS32.zip Dos32\allegro.cfg Dos32\keyboard.dat Dos32\magnetic.txt | ||
"\Program Files\Zip\zip" -j \Temp\MagneticDOS32.zip \DosApps\DJGPP\bin\cwsdpmi.exe | ||
|
||
"\Program Files\Zip\zip" -j \Temp\MagneticWin.zip COPYING Win\Release\*.exe Win\Release\*.chm | ||
|
||
"\Program Files\Zip\zip" \Temp\MagneticSrc.zip COPYING MakeDist.bat Generic\* Scripts\* Amiga\* | ||
"\Program Files\Zip\zip" \Temp\MagneticSrc.zip Dos\*.c Dos\makefile Dos\bcc.cfg Dos\build.txt | ||
"\Program Files\Zip\zip" \Temp\MagneticSrc.zip Dos32\allegro.c Dos32\makefile | ||
"\Program Files\Zip\zip" -r \Temp\MagneticSrc.zip Win\* -x Win\Release\* | ||
"%ProgramFiles(x86)%\Zip\zip" \Temp\MagneticSrc.zip COPYING MakeDist.bat Generic\* Scripts\* Amiga\* | ||
"%ProgramFiles(x86)%\Zip\zip" \Temp\MagneticSrc.zip Dos\*.c Dos\makefile Dos\bcc.cfg Dos\build.txt | ||
"%ProgramFiles(x86)%\Zip\zip" \Temp\MagneticSrc.zip Dos32\allegro.c Dos32\makefile | ||
"%ProgramFiles(x86)%\Zip\zip" -r \Temp\MagneticSrc.zip Win\* -x Win\Release\* | ||
pushd \Programs | ||
"\Program Files\Zip\zip" \Temp\MagneticSrc.zip Libraries\mfc\ColourButton.* | ||
"\Program Files\Zip\zip" \Temp\MagneticSrc.zip Libraries\mfc\Dialogs.* | ||
"\Program Files\Zip\zip" \Temp\MagneticSrc.zip Libraries\mfc\MenuBar.* | ||
"%ProgramFiles(x86)%\Zip\zip" \Temp\MagneticSrc.zip Libraries\mfc\ColourButton.* | ||
"%ProgramFiles(x86)%\Zip\zip" \Temp\MagneticSrc.zip Libraries\mfc\DarkMode.* | ||
"%ProgramFiles(x86)%\Zip\zip" \Temp\MagneticSrc.zip Libraries\mfc\Dialogs.* | ||
"%ProgramFiles(x86)%\Zip\zip" \Temp\MagneticSrc.zip Libraries\mfc\MenuBar.* | ||
popd | ||
|
||
"\Program Files\Zip\zip" \Temp\MagneticSrc.zip Glk\* Gtk\* | ||
"%ProgramFiles(x86)%\Zip\zip" \Temp\MagneticSrc.zip Glk\* Gtk\* | ||
|