mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-11 21:34:25 -05:00
11 lines
133 B
Makefile
11 lines
133 B
Makefile
CC := gcc
|
|
CFLAGS := -O2 -g
|
|
|
|
programs := ntrextractfile ntruncompbw
|
|
|
|
all: $(programs)
|
|
@:
|
|
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|