diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-12-16 13:29:02 -0500 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-12-16 13:29:02 -0500 |
commit | cc5db41f30708c1cc2d33a46879c96a9404764a3 (patch) | |
tree | d59ba2fd880b8eb47ab7e1a5885d067b028598ff /tools/aif2pcm | |
parent | aad94c34334ee44f1298175df38f14dc27ae5fb8 (diff) |
Revert multiple source change commits for rebase.
Diffstat (limited to 'tools/aif2pcm')
-rw-r--r-- | tools/aif2pcm/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tools/aif2pcm/Makefile b/tools/aif2pcm/Makefile index dd48a8759..77df29152 100644 --- a/tools/aif2pcm/Makefile +++ b/tools/aif2pcm/Makefile @@ -6,18 +6,12 @@ LIBS = -lm SRCS = main.c extended.c -ifeq ($(OS),Windows_NT) -EXE := .exe -else -EXE := -endif - .PHONY: all clean -all: aif2pcm$(EXE) +all: aif2pcm @: -aif2pcm$(EXE): $(SRCS) +aif2pcm: $(SRCS) $(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS) clean: |