summaryrefslogtreecommitdiff
path: root/synth/Makefile
diff options
context:
space:
mode:
authorFlorian Jung <flo@thinkpad.(none)>2010-12-30 18:06:15 +0100
committerFlorian Jung <flo@thinkpad.(none)>2010-12-30 18:17:52 +0100
commitd46f6ee0a6298ff58c6f4f0647d49fb4a76f9ea9 (patch)
treebc38f75448e9da7078d6126a8d98b44a8818367c /synth/Makefile
parent725302c54573d1095d49d466ebda94abe9c13dd5 (diff)
Improved Makefile and .gitignore
Diffstat (limited to 'synth/Makefile')
-rw-r--r--synth/Makefile8
1 files changed, 4 insertions, 4 deletions
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)