mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 13:30:47 +00:00
91a534cbc9
* add C preprocess_pragmas and Bash preprocess * "line return" -> newline * align tools sources * fix: handle files that are not newline-terminated * use a temp directory with a same-basename file instead of a temp file * macos compat * remove debug code
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
CFLAGS := -Wall -Wextra -pedantic -std=c99 -g -O2
|
|
PROGRAMS := elf2rom makeromfs mkdmadata mkldscript preprocess_pragmas reloc_prereq vtxdis
|
|
|
|
ifeq ($(shell command -v clang >/dev/null 2>&1; echo $$?),0)
|
|
CC := clang
|
|
else
|
|
CC := gcc
|
|
endif
|
|
|
|
LLD ?= 0
|
|
|
|
ifeq ($(shell command -v ld.lld >/dev/null 2>&1; echo $$?),0)
|
|
LLD := 1
|
|
endif
|
|
|
|
ifneq ($(LLD),0)
|
|
CFLAGS += -fuse-ld=lld
|
|
endif
|
|
|
|
all: $(PROGRAMS)
|
|
$(MAKE) -C ZAPD
|
|
$(MAKE) -C fado
|
|
$(MAKE) -C audio
|
|
|
|
clean:
|
|
$(RM) $(PROGRAMS) $(addsuffix .exe,$(PROGRAMS))
|
|
$(MAKE) -C ZAPD clean
|
|
$(MAKE) -C fado clean
|
|
$(MAKE) -C audio clean
|
|
|
|
distclean: clean
|
|
$(MAKE) -C audio distclean
|
|
|
|
.PHONY: all clean distclean
|
|
|
|
elf2rom_SOURCES := elf2rom.c elf32.c n64chksum.c util.c
|
|
makeromfs_SOURCES := makeromfs.c n64chksum.c util.c
|
|
mkdmadata_SOURCES := mkdmadata.c spec.c util.c
|
|
mkldscript_SOURCES := mkldscript.c spec.c util.c
|
|
preprocess_pragmas_SOURCES := preprocess_pragmas.c
|
|
reloc_prereq_SOURCES := reloc_prereq.c spec.c util.c
|
|
vtxdis_SOURCES := vtxdis.c
|
|
|
|
|
|
define COMPILE =
|
|
$(1): $($1_SOURCES)
|
|
$(CC) $(CFLAGS) $$^ -o $$@
|
|
endef
|
|
|
|
$(foreach p,$(PROGRAMS),$(eval $(call COMPILE,$(p))))
|