pokeemerald/tools/patchelf/Makefile
Martin Griffin f1b9872bf0 Test moves, items, and abilities in battle
Thank you to SBird for providing mgba-rom-test binaries and Spikes/Toxic
Spikes tests!

Co-authored-by: sbird <sbird@no.tld>
2023-02-01 13:53:57 +00:00

19 lines
204 B
Makefile

.PHONY: all clean
SRCS = patchelf.c
ifeq ($(OS),Windows_NT)
EXE := .exe
else
EXE :=
endif
all: patchelf$(EXE)
@:
patchelf$(EXE): $(SRCS)
$(CC) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) patchelf$(EXE)