]> git.sesse.net Git - c64tapwav/blobdiff - Makefile
Add a license.
[c64tapwav] / Makefile
index 50610c3e8092ec8a3ef86b19b82c9fd71b5e35ed..a3cf95f54f78b4e04ebcc84ed0276594877920c3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,27 @@
-all: synth
+CXXFLAGS=--std=gnu++0x -O2 -fno-math-errno -g -Wall
+LDLIBS=-lavcodec -lavformat -lavutil -lswresample
+
+all: synth decode sync cleaner
 
 %.o: %.cpp
        $(CXX) -MMD -MP $(CPPFLAGS) $(CXXFLAGS) -o $@ -c $<
 
-OBJS=synth.o synth_main.o
+OBJS=decode.o synth.o synth_main.o interpolate.o sync.o level.o filter.o
 
 DEPS=$(OBJS:.o=.d)
 -include $(DEPS)
 
+decode: interpolate.o audioreader.o decode.o level.o filter.o
+       $(CXX) -o $@ $^ $(LDLIBS) $(LDFLAGS)
+
 synth: synth.o synth_main.o
        $(CXX) -o $@ $^ $(LDFLAGS)
 
+sync: interpolate.o sync.o
+       $(CXX) -o $@ $^ $(LDFLAGS)
+
+cleaner: cleaner.o
+       $(CXX) -o $@ $^ $(LDFLAGS)
+
 clean:
-       $(RM) synth $(OBJS) $(DEPS)
+       $(RM) synth decode sync cleaner $(OBJS) $(DEPS)