From d46f6ee0a6298ff58c6f4f0647d49fb4a76f9ea9 Mon Sep 17 00:00:00 2001 From: Florian Jung Date: Thu, 30 Dec 2010 18:06:15 +0100 Subject: Improved Makefile and .gitignore --- synth/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'synth/Makefile') diff --git a/synth/Makefile b/synth/Makefile index 791e62a..7146da2 100644 --- a/synth/Makefile +++ b/synth/Makefile @@ -14,19 +14,19 @@ all: $(BIN) $(BIN): $(OBJ) - $(CXX) $(CFLAGS) -o synth $(OBJ) $(LDFLAGS) + $(CXX) $(CFLAGS) -o $(BIN) $(OBJ) $(LDFLAGS) -dep: $(SRC) +depend dep: $(SRC) $(CC) -MM $(SRC) > $(DEPENDFILE) -include $(DEPENDFILE) %.o: %.cpp - $(CXX) $(CXXFLAGS) -g -c $< + $(CXX) $(CXXFLAGS) -c $< -.PHONY: clean +.PHONY: clean dep depend clean: rm -f $(OBJ) $(BIN) -- cgit v1.2.3