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