I have this makefile and I try to run it
code : CC = gcc
all: sph2pipe create_mix
sph2pipe: sph2pipe_compiled
sph2pipe_compiled: sph2pipe_v2.5/sph2pipe
sph2pipe_v2.5/sph2pipe: | sph2pipe_v2.5
cd sph2pipe_v2.5/; \
$(CC) -o sph2pipe *.c -lm
sph2pipe_v2.5: sph2pipe_v2.5.tar.gz
tar xzf sph2pipe_v2.5.tar.gz
create_mix:
unzip create-speaker-mixtures.zip -d create-speaker-mixtures
clean:
rm -rf sph2pipe_v2.5/
rm -rf create-speaker-mixtures/
I'm on windows 8.1 so i use this commande in cmd : mingw32-make.exe makefile
but i have an error (( mingw32-make.exe nothing to be done for 'makefile' ))
I try to this : mingw32-make.exe
and i have another error
i will share a picture with the second error