forked from nielsmh/escsitoolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a regular Makefile for building outside Watcom IDE
The Watcom IDE files might be removed in the future.
- Loading branch information
Showing
3 changed files
with
22 additions
and
0 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,7 +1,10 @@ | ||
*.obj | ||
*.err | ||
*.lk1 | ||
*.mk1 | ||
*.mk | ||
*.map | ||
*.sym | ||
*.res | ||
*.re@ | ||
.vscode/ |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
CXXFLAGS=-w4 -e25 -zq -od -of -d0 -bt=dos -fo=.obj -mc -xs -xr | ||
|
||
dos_objects = tbdos.obj aspiintf.obj scsiintf.obj | ||
dos_exe = scsitb.exe | ||
|
||
.cpp: dos\;win\ | ||
|
||
.cpp.obj: .AUTODEPEND | ||
wcl -c -cc++ -q $(CXXFLAGS) $[* | ||
|
||
scsitb.exe: $(dos_objects) | ||
wcl -l=dos -q -lr -fe=$^. $(dos_objects) | ||
|
||
clean: .SYMBOLIC | ||
del *.err | ||
del $(dos_exe) | ||
del $(dos_objects) | ||
|
||
all: $(dos_exe) |
Binary file not shown.