diff options
Diffstat (limited to 'tools/aif2pcm/Makefile')
-rw-r--r-- | tools/aif2pcm/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/aif2pcm/Makefile b/tools/aif2pcm/Makefile index e5cb6ad..77df291 100644 --- a/tools/aif2pcm/Makefile +++ b/tools/aif2pcm/Makefile @@ -1,4 +1,4 @@ -CC = gcc +CC ?= gcc CFLAGS = -Wall -Wextra -Wno-switch -Werror -std=c11 -O2 @@ -6,7 +6,10 @@ LIBS = -lm SRCS = main.c extended.c -.PHONY: clean +.PHONY: all clean + +all: aif2pcm + @: aif2pcm: $(SRCS) $(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS) |