summaryrefslogtreecommitdiff
path: root/synth/Makefile
diff options
context:
space:
mode:
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 3870262..75c49d3 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)