From: Steinar H. Gunderson Date: Fri, 3 May 2013 21:34:10 +0000 (+0200) Subject: Makefile tweaks. X-Git-Url: https://git.sesse.net/?p=c64tapwav;a=commitdiff_plain;h=3126f15b062dc807bf30b9c752d0ab407d00b072 Makefile tweaks. --- diff --git a/Makefile b/Makefile index 34b617d..51c9c7c 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +CXXFLAGS=-O2 -g -Wall + all: synth decode %.o: %.cpp @@ -15,4 +17,4 @@ synth: synth.o synth_main.o $(CXX) -o $@ $^ $(LDFLAGS) clean: - $(RM) synth $(OBJS) $(DEPS) + $(RM) synth decode $(OBJS) $(DEPS)