X-Git-Url: https://git.sesse.net/?p=c64tapwav;a=blobdiff_plain;f=Makefile;h=34b617d9da84b370ceec96cdc4c010443dc02007;hp=50610c3e8092ec8a3ef86b19b82c9fd71b5e35ed;hb=1501ff12c469c5ac65eeb6c00b08c9646ef11212;hpb=02cfbb7d322c6a683924ceb3b6277fca33c6b97e diff --git a/Makefile b/Makefile index 50610c3..34b617d 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,16 @@ -all: synth +all: synth decode %.o: %.cpp $(CXX) -MMD -MP $(CPPFLAGS) $(CXXFLAGS) -o $@ -c $< -OBJS=synth.o synth_main.o +OBJS=decode.o synth.o synth_main.o DEPS=$(OBJS:.o=.d) -include $(DEPS) +decode: decode.o + $(CXX) -o $@ $^ $(LDFLAGS) + synth: synth.o synth_main.o $(CXX) -o $@ $^ $(LDFLAGS)