X-Git-Url: https://git.sesse.net/?p=c64tapwav;a=blobdiff_plain;f=Makefile;h=ae22aa885a5ef4b75b065ec542dcc4f1d34309e9;hp=2f1b6728df609e8472b8940abd55e0ef7d7471eb;hb=08089f496815d725c3bee171bae0e884642ffc05;hpb=9e9da751d8df66b61d930cdf643c65c61ebb4f8a diff --git a/Makefile b/Makefile index 2f1b672..ae22aa8 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,22 @@ -CXXFLAGS=-O2 -g -Wall +CXXFLAGS=-O2 -ffast-math -g -Wall all: synth decode sync %.o: %.cpp $(CXX) -MMD -MP $(CPPFLAGS) $(CXXFLAGS) -o $@ -c $< -OBJS=decode.o synth.o synth_main.o +OBJS=decode.o synth.o synth_main.o interpolate.o sync.o DEPS=$(OBJS:.o=.d) -include $(DEPS) -decode: decode.o +decode: interpolate.o decode.o $(CXX) -o $@ $^ $(LDFLAGS) synth: synth.o synth_main.o $(CXX) -o $@ $^ $(LDFLAGS) -sync: sync.o +sync: interpolate.o sync.o $(CXX) -o $@ $^ $(LDFLAGS) clean: