mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-10 11:03:46 +00:00
9 lines
98 B
Makefile
9 lines
98 B
Makefile
CFLAGS := -Wall -O2
|
|
|
|
bin2c: bin2c.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|
|
|
|
clean:
|
|
$(RM) bin2c
|
|
|
|
.PHONY: clean
|