summaryrefslogtreecommitdiff
path: root/tools/aif2pcm/Makefile
blob: af7d19fe90ed3c68b938229ab6669427969bc2f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CC = gcc

CFLAGS = -Wall -Wextra -Wno-switch -Werror -std=c11 -O2

LIBS = -lm

SRCS = main.c extended.c

.PHONY: all clean

all: aif2pcm
	@:

aif2pcm: $(SRCS)
	$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)

clean:
	$(RM) aif2pcm aif2pcm.exe