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