mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
be84e1f0f8
* Add Cygwin support * revert .gitignore changes * Add Cygwin instructions * corrections * specify dependencies in README.md
28 lines
682 B
Makefile
28 lines
682 B
Makefile
CC := gcc
|
|
CFLAGS := -Wall -Wextra -pedantic -std=c99 -g -O2
|
|
PROGRAMS := yaz0 makeromfs elf2rom mkldscript vtxdis
|
|
ZAPD := ZAPD/ZAPD.out
|
|
|
|
all: $(PROGRAMS)
|
|
cd ZAPD && $(MAKE)
|
|
|
|
clean:
|
|
$(RM) $(PROGRAMS) $(addsuffix .exe,$(PROGRAMS))
|
|
$(RM) ZAPD/ZAPD.out
|
|
# Need to clean the above line later...
|
|
|
|
mkldscript_SOURCES := mkldscript.c util.c
|
|
elf2rom_SOURCES := elf2rom.c elf32.c n64chksum.c util.c
|
|
yaz0_SOURCES := yaz0tool.c yaz0.c util.c
|
|
makeromfs_SOURCES := makeromfs.c n64chksum.c util.c
|
|
vtxdis_SOURCES := vtxdis.c
|
|
|
|
#$(ZAPD):
|
|
# cd ZAPD && $(MAKE)
|
|
|
|
define COMPILE =
|
|
$(1): $($1_SOURCES)
|
|
$(CC) $(CFLAGS) $$^ -o $$@
|
|
endef
|
|
|
|
$(foreach p,$(PROGRAMS),$(eval $(call COMPILE,$(p))))
|