wav/text convertors now working
This commit is contained in:
27
SoundBrotching/c-tools/Makefile
Normal file
27
SoundBrotching/c-tools/Makefile
Normal file
@@ -0,0 +1,27 @@
|
||||
#
|
||||
# tth@konrad:~/Devel/Fortraneries/SoundBrotching/c-tools$
|
||||
#
|
||||
|
||||
COPT = -Wall -Wextra -g -DDEBUG_LEVEL=1
|
||||
|
||||
all: text2wav wav2text text2ao
|
||||
|
||||
# ----------------------------------------------------------
|
||||
#
|
||||
# C tools
|
||||
#
|
||||
CLIBS = -lsndfile support.o
|
||||
|
||||
support.o: support.c Makefile support.h
|
||||
gcc $(COPT) -c $<
|
||||
|
||||
text2wav: text2wav.c Makefile support.h support.o
|
||||
gcc $(COPT) $< $(CLIBS) -o $@
|
||||
|
||||
wav2text: wav2text.c Makefile support.h support.o
|
||||
gcc $(COPT) $< $(CLIBS) -o $@
|
||||
|
||||
text2ao: text2ao.c Makefile support.h support.o
|
||||
gcc $(COPT) $< $(CLIBS) -lao -o $@
|
||||
|
||||
# ------ eomf --------
|
||||
Reference in New Issue
Block a user