pokeemerald/tools/aif2pcm/Makefile

19 lines
245 B
Makefile
Raw Normal View History

CC ?= gcc
2017-12-04 02:55:01 +01:00
CFLAGS = -Wall -Wextra -Wno-switch -Werror -std=c11 -O2
2017-12-04 02:55:01 +01:00
LIBS = -lm
SRCS = main.c extended.c
2019-07-23 22:17:00 +02:00
.PHONY: all clean
all: aif2pcm
@:
2017-12-04 02:55:01 +01:00
aif2pcm: $(SRCS)
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)
clean:
$(RM) aif2pcm aif2pcm.exe