pokeheartgold/tools/elfcoder/Makefile
taxicat1 008118b6b3 Address review comments
- all local vars to camelcase
- header include guards with lib name
- comments for preprocessor directives
- asm defs back to respective .inc files
- /lib/dsprot/tools/ merged to /tools/
- unprefixed globals prefixed
- sdk defs consolidated to sdk include
- lsf lib split to objects
2025-11-09 02:59:34 -05:00

18 lines
234 B
Makefile

CC := gcc
CFLAGS := -O3 -Wno-unused-result
C_FILES := $(wildcard *.c)
H_FILES := $(wildcard *.h)
.PHONY: all clean
all: elfcoder
@:
elfcoder: $(C_FILES) $(H_FILES)
$(CC) $(CFLAGS) $(C_FILES) -o elfcoder
clean:
$(RM) elfcoder