1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-03 06:24:30 +00:00

Poe Objects (#743)

* poe objects

* Last unaccounted resolved, name suffix fixes

* remove _tex

* missed 2

* format

Co-authored-by: Fig02 <fig02srl@gmail.com>
This commit is contained in:
Tharo 2021-04-04 22:48:12 +01:00 committed by GitHub
parent 8b87e53b76
commit 208167361b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 318 additions and 241 deletions

View file

@ -8,11 +8,9 @@ all: $(PROGRAMS)
clean:
$(RM) $(PROGRAMS) $(addsuffix .exe,$(PROGRAMS))
$(RM) ZAPD/ZAPD.out
# Need to clean the above line later...
$(MAKE) -C ZAPD clean
distclean: clean
$(MAKE) -C ZAPD clean
.PHONY: all clean distclean
@ -22,9 +20,6 @@ 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 $$@