mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-17 12:07:38 +01:00
16 lines
225 B
Makefile
16 lines
225 B
Makefile
CC = gcc
|
|
|
|
CFLAGS = -Wall -Wextra -Wno-switch -Werror -std=c11 -O2 -s
|
|
|
|
LIBS = -lm
|
|
|
|
SRCS = main.c extended.c
|
|
|
|
.PHONY: clean
|
|
|
|
aif2pcm: $(SRCS)
|
|
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)
|
|
|
|
clean:
|
|
$(RM) aif2pcm aif2pcm.exe
|