pmd-sky/tools/asmdiff/Makefile
AnonymousRandomPerson 608e361e57 Initialized base repo
2023-06-28 23:35:19 -04:00

18 lines
214 B
Makefile

CC := gcc
CFLAGS := -O2 -g -Wno-unused-result
ifneq ($(DEBUG),1)
CFLAGS += -DNDEBUG
endif
programs := ntrextractfile ntruncompbw
all: $(programs)
@:
clean:
$(RM) $(programs)
%: %.c
$(CC) $(CFLAGS) -o $@ $<