mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-17 12:07:38 +01:00
11 lines
122 B
Makefile
11 lines
122 B
Makefile
|
CC = gcc
|
||
|
.PHONY: clean
|
||
|
|
||
|
SRCS = gbafix.c
|
||
|
|
||
|
gbafix: $(SRCS)
|
||
|
$(CC) $(SRCS) -o $@ $(LDFLAGS)
|
||
|
|
||
|
clean:
|
||
|
$(RM) gbafix gbafix.exe
|