summaryrefslogtreecommitdiff
path: root/tools/aif2pcm
diff options
context:
space:
mode:
Diffstat (limited to 'tools/aif2pcm')
-rw-r--r--tools/aif2pcm/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aif2pcm/Makefile b/tools/aif2pcm/Makefile
index ec6343b12..611c0e2df 100644
--- a/tools/aif2pcm/Makefile
+++ b/tools/aif2pcm/Makefile
@@ -1,6 +1,6 @@
CC = gcc
-CFLAGS = -Wall -Wextra -Wno-switch -std=c11 -O2
+CFLAGS = -Wall -Wextra -Wno-switch -std=c11 -O2 -s
LIBS = -lm
@@ -9,7 +9,7 @@ SRCS = main.c extended.c
.PHONY: clean
aif2pcm: $(SRCS)
- $(CC) $(CFLAGS) $(SRCS) -o $@ $(LIBS)
+ $(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)
clean:
$(RM) aif2pcm aif2pcm.exe