mirror of
https://github.com/pret/pmd-red.git
synced 2026-05-09 21:49:58 -05:00
* Sync tools/ directory with pokeemerald We really ought to have a central repository for this mess * Make incremental builds faster Scientists hate him! He made NODEP disappear with this ONE SIMPLE TRICK!!! Want to know more? -> __click here__ <- * Disassemble some more tables and the first graphic
20 lines
211 B
Makefile
20 lines
211 B
Makefile
CC ?= gcc
|
|
.PHONY: all clean
|
|
|
|
SRCS = gbafix.c
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
EXE := .exe
|
|
else
|
|
EXE :=
|
|
endif
|
|
|
|
all: gbafix$(EXE)
|
|
@:
|
|
|
|
gbafix$(EXE): $(SRCS)
|
|
$(CC) $(SRCS) -o $@ $(LDFLAGS)
|
|
|
|
clean:
|
|
$(RM) gbafix gbafix.exe
|