diff Makefile @ 3:95cdedd01422

allow user to select number of seconds to convert
author Robert McIntyre <rlm@mit.edu>
date Fri, 21 Oct 2011 06:44:35 -0700
parents c3248c71ae74
children 6a2c890c22db
line wrap: on
line diff
     1.1 --- a/Makefile	Fri Oct 21 06:21:33 2011 -0700
     1.2 +++ b/Makefile	Fri Oct 21 06:44:35 2011 -0700
     1.3 @@ -1,6 +1,3 @@
     1.4 -
     1.5 -
     1.6 -
     1.7  all : build/spc_convert
     1.8  
     1.9  build/spc_convert : snes_core demo_utils build/spc_convert.o
    1.10 @@ -18,12 +15,10 @@
    1.11  build/wave_writer.o : demo/wave_writer.c
    1.12  	g++ -c demo/wave_writer.c -o build/wave_writer.o
    1.13  
    1.14 -
    1.15  snes_core : build/dsp.o build/SNES_SPC.o build/SNES_SPC_misc.o \
    1.16              build/SNES_SPC_state.o build/spc.o build/SPC_DSP.o \
    1.17              build/SPC_Filter.o
    1.18  
    1.19 -
    1.20  build/dsp.o : snes_spc/dsp.cpp
    1.21  	g++ -c snes_spc/dsp.cpp -o build/dsp.o
    1.22  
    1.23 @@ -45,10 +40,8 @@
    1.24  build/SPC_Filter.o : snes_spc/SPC_Filter.cpp
    1.25  	g++ -c snes_spc/SPC_Filter.cpp -o build/SPC_Filter.o
    1.26  
    1.27 -
    1.28 -
    1.29 -
    1.30 -
    1.31  clean: 
    1.32  	find . \( -name "*.o" -print0 \) -o \
    1.33 -               \( -name "spc" -print0 \) | xargs -t -0 rm
    1.34 \ No newline at end of file
    1.35 +               \( -name "spc" -print0 \) -o \
    1.36 +               \( -name "*.wav" -print0 \) \
    1.37 +		| xargs -t -0 rm
    1.38 \ No newline at end of file