Browse Source

Initial commit

master
Forest Belton 2 years ago
commit
4b277ac41e
2 changed files with 14 additions and 0 deletions
  1. +6
    -0
      Makefile
  2. +8
    -0
      README.md

+ 6
- 0
Makefile View File

@ -0,0 +1,6 @@
SFILES := $(shell find src -type f -name '*.s')
OFILES := $(SFILES:%.s=%.o)
OUTPUT := is.gb
$(OUTPUT): $(OFILES)
echo

+ 8
- 0
README.md View File

@ -0,0 +1,8 @@
# Island Story
## Build
Make sure you have [RGBDS](https://github.com/gbdev/rgbds) installed.
```
$ make
```

Loading…
Cancel
Save