Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Build System Rewrite] Everything at once: Includes build/assets #1958

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7fa9819
Makefile uses make_tools, mapjson takes out dir.
Icedude907 Nov 11, 2023
2198ca3
Reordered makefile.
Icedude907 Nov 12, 2023
81f3973
Moved files - spinda spots, jp fonts, redyellowgreen_frame.bin
Icedude907 Nov 12, 2023
a0bf504
Linkerscript now tracks RAM/ROM usage
Icedude907 Nov 12, 2023
4b2054c
Parallel SCANINC via `.d` generation.
Icedude907 Nov 12, 2023
51eda0e
Sorted and cleaned up `graphics_file_rules`
Icedude907 Nov 14, 2023
ea402fe
Moved general graphics rules into `graphics.mk`
Icedude907 Nov 14, 2023
85f4ca6
All `mid2agb` songs are controlled by a `midi.cfg` file
Icedude907 Nov 15, 2023
cf1eaea
Coalesced audio rules into `audio.mk`
Icedude907 Nov 15, 2023
bf02fed
Consistent naming
Icedude907 Nov 15, 2023
5e4e522
`.cfg` edits now rebuild `.mid`
Icedude907 Nov 15, 2023
fad9aa3
Merge branch 'build-separate-graphics-file'
Icedude907 Nov 17, 2023
9bf0952
Merge 'build-music-config'
Icedude907 Nov 17, 2023
ef936ea
Merge 'build-linkerscript'
Icedude907 Nov 17, 2023
222af41
Merge 'build-graphics-special'
Icedude907 Nov 17, 2023
a3c353f
initial changes to Makefile. `modern` -> `emerald_modern`
Icedude907 Nov 15, 2023
44b915e
`json_data_rules.mk`
Icedude907 Nov 15, 2023
ad9f966
Moved audio files
Icedude907 Nov 15, 2023
38e70e2
Moved `map_data_rules.mk`
Icedude907 Nov 15, 2023
d732794
Moved `.*bpp` & `.gbapal`. Note for hacks using `build/assets` is opt…
Icedude907 Nov 15, 2023
541519b
Moved stragglers `.lz` and `.rl`
Icedude907 Nov 15, 2023
7848827
Sorted `.gitignore`
Icedude907 Nov 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 25 additions & 31 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,41 +1,35 @@
*.exe
*.o
*.i
*.elf
*.gba
!data/*.gba
# OS
.DS_Store
Thumbs.db
.fuse_hidden*

# Tools
.idea/
.vscode/
porymap*

# Emulation Files
*.sgm
*.sa1
*.ss[0-9]
*.sg1
*.1bpp
*.4bpp
*.8bpp
*.gbapal
*.lz
*.rl
*.latfont
*.hwjpnfont
*.fwjpnfont
sound/**/*.bin
sound/songs/midi/*.s
*.sa*

# Build artifacts
build/
tools/agbcc
*.gba
!data/*.gba
*.elf
*.map
*.ld
*.bat
*.exe
*.sym
*.dump
*.sa*
Thumbs.db
build/
.DS_Store
*.ddump
.idea/
porymap.*.cfg
prefabs.json
.vscode/
*.a
.fuse_hidden*

# Other
*.bat
*.sna
*.diff
*.sym
*.js
*.ddump
prefabs.json
Loading