Replaced whole bunch for Makefiles with a single generic Makefile.

- No complex shell logic.
- "Source file shadowing" for all targets via vpath.
- Dependency handling.
- True incremental build.
- Don't write into source directories.
- Easy cleanup by just removing 'wrk'.
This commit is contained in:
Oliver Schmidt
2013-05-04 22:15:30 +02:00
parent 008b4c4e1d
commit 81e467cdc2
24 changed files with 263 additions and 420 deletions

View File

@@ -7,8 +7,16 @@
;
.export _tgi_static_stddrv
.import _apple2_280_192_8
.ifdef __APPLE2ENH__
.import _a2e_hi_tgi
.else
.import _a2_hi_tgi
.endif
.rodata
_tgi_static_stddrv := _apple2_280_192_8
.ifdef __APPLE2ENH__
_tgi_static_stddrv := _a2e_hi_tgi
.else
_tgi_static_stddrv := _a2_hi_tgi
.endif