mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
f1b9872bf0
Thank you to SBird for providing mgba-rom-test binaries and Spikes/Toxic Spikes tests! Co-authored-by: sbird <sbird@no.tld>
19 lines
233 B
Makefile
19 lines
233 B
Makefile
.PHONY: all clean
|
|
|
|
SRCS = main.c
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
EXE := .exe
|
|
else
|
|
EXE :=
|
|
endif
|
|
|
|
all: mgba-rom-test-hydra$(EXE)
|
|
@:
|
|
|
|
mgba-rom-test-hydra$(EXE): $(SRCS)
|
|
$(CC) $(SRCS) -o $@ $(LDFLAGS)
|
|
|
|
clean:
|
|
$(RM) mgba-rom-test-hydra$(EXE)
|