mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-03-21 17:25:33 -05:00
20 lines
234 B
Makefile
20 lines
234 B
Makefile
CC := gcc
|
|
CFLAGS := -O2 -g -Wno-unused-result
|
|
|
|
ifneq ($(DEBUG),1)
|
|
CFLAGS += -DNDEBUG
|
|
endif
|
|
|
|
programs := ntrextractfile ntruncompbw
|
|
|
|
.PHONY: all clean
|
|
|
|
all: $(programs)
|
|
@:
|
|
|
|
clean:
|
|
@$(RM) $(programs)
|
|
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|