diff options
Diffstat (limited to 'tools/aif2pcm/Makefile')
-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 967930c59..790ed71f2 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) |