diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-11-06 19:42:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-06 19:42:58 -0500 |
| commit | ea6ce1833f3765aac4c17b1280ac1ec74f382b75 (patch) | |
| tree | 5782cddab94fce21ab88de4d8d2aa41a34848114 /tools/Makefile | |
| parent | Fix #61: edit pikapic macros to avoid -Wlong-string warnings (diff) | |
| parent | 'make tools' uses -pedantic (diff) | |
| download | pokeyellow-ea6ce1833f3765aac4c17b1280ac1ec74f382b75.tar.gz pokeyellow-ea6ce1833f3765aac4c17b1280ac1ec74f382b75.tar.xz pokeyellow-ea6ce1833f3765aac4c17b1280ac1ec74f382b75.zip | |
Merge pull request #62 from Rangi42/master
Fix #5: replace pcm.py with pcm.c and fix off-by-one error with unused bytes
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile index 13bab1fb..f8dceb1a 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,9 +1,9 @@ .PHONY: all clean CC := gcc -CFLAGS := -O3 -std=c99 -Wall -Wextra +CFLAGS := -O3 -std=c99 -Wall -Wextra -pedantic -tools := scan_includes gfx pkmncompress +tools := scan_includes gfx pkmncompress pcm all: $(tools) @: |
