Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Starting to make the Makefile more modular for future expansion. Stil…
…l not working quite right... committing so I can revert the Makefile in case I break things worse.
- Loading branch information
John Vilk
committed
Sep 29, 2012
1 parent
038cb5a
commit b87f437
Showing
9 changed files
with
156 additions
and
55 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 |
---|---|---|
@@ -15,3 +15,5 @@ | ||
/snap | ||
/*.pdb | ||
/*.sym | ||
/games | ||
/bios |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
BIOS File Directory | ||
=================== | ||
Plop your BIOS files for relevant systems here. | ||
|
||
Expected BIOS file names: | ||
* ColecoVision: ``coleco.zip`` |
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,3 @@ | ||
Game Directory | ||
===================== | ||
Dump your video games here. |
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,11 @@ | ||
################################################################################ | ||
# Contains Makefile logic required when building ColecoVision | ||
################################################################################ | ||
|
||
# ColecoVision has a bios that is required to run the system. | ||
BIOS := coleco.zip | ||
# SUBTARGET for the MESS makefile. | ||
SUBTARGET := colecovision | ||
|
||
# System-specific flags that should be passed to MESS's makefile. | ||
# MESS_MAKE_FLAGS := |
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
File renamed without changes.
File renamed without changes.
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,4 @@ | ||
Templates | ||
========= | ||
This folder contains HTML templates used during the build process to make a | ||
webpage with MESS embedded in it. |