diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-07-30 19:50:52 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-07-30 19:50:52 -0400 |
commit | 23d917f7c89c1256f1e935a57d490816fd916f55 (patch) | |
tree | 7aa6a6b918dd3fc0b67818d4fbec03fb26b733a7 /tools/aif2pcm | |
parent | 1a34a06758175b4d39ee0a81c3441ac958d005fd (diff) |
Quieter `make tools`
Diffstat (limited to 'tools/aif2pcm')
-rw-r--r-- | tools/aif2pcm/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/aif2pcm/Makefile b/tools/aif2pcm/Makefile index e5cb6ad31..af7d19fe9 100644 --- a/tools/aif2pcm/Makefile +++ b/tools/aif2pcm/Makefile @@ -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) |