mirror of
https://github.com/pret/pmd-sky.git
synced 2026-03-22 01:35:35 -05:00
18 lines
214 B
Makefile
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 $@ $<
|