diff options
| author | shinny <shinny456@users.noreply.github.com> | 2020-06-02 14:51:57 -0400 |
|---|---|---|
| committer | shinny <shinny456@users.noreply.github.com> | 2020-06-02 14:51:57 -0400 |
| commit | 4f88655a79bb2d8f10bdce2841f427c0e27040bd (patch) | |
| tree | b750e64b62cec61ca3a43da6aa7d4e3b37e64c9e /tools/aif2pcm/Makefile | |
| parent | bc504264f1e54b3c1e482710c592e5549828bfe1 (diff) | |
update tools
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) |
