]> git.sesse.net Git - c64tapwav/blobdiff - Makefile
Clean up interpolation a bit.
[c64tapwav] / Makefile
index 34b617d9da84b370ceec96cdc4c010443dc02007..03d97ff26db0e74b02cfafdebc8d9998673efa9e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,6 @@
-all: synth decode
+CXXFLAGS=-O2 -ffast-math -g -Wall
+
+all: synth decode sync
 
 %.o: %.cpp
        $(CXX) -MMD -MP $(CPPFLAGS) $(CXXFLAGS) -o $@ -c $<
@@ -14,5 +16,8 @@ decode: decode.o
 synth: synth.o synth_main.o
        $(CXX) -o $@ $^ $(LDFLAGS)
 
+sync: sync.o
+       $(CXX) -o $@ $^ $(LDFLAGS)
+
 clean:
-       $(RM) synth $(OBJS) $(DEPS)
+       $(RM) synth decode sync $(OBJS) $(DEPS)