X-Git-Url: https://git.sesse.net/?p=c64tapwav;a=blobdiff_plain;f=Makefile;h=2f1b6728df609e8472b8940abd55e0ef7d7471eb;hp=51c9c7c913388c5ca8f14fad73db77570e823b0d;hb=9e9da751d8df66b61d930cdf643c65c61ebb4f8a;hpb=2dcc74e788a0d2bda5cb9b2a62dc11fbef99fb5d;ds=sidebyside diff --git a/Makefile b/Makefile index 51c9c7c..2f1b672 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CXXFLAGS=-O2 -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)