diff options
author | Florian Jung <flo@thinkpad.(none)> | 2010-12-30 18:06:15 +0100 |
---|---|---|
committer | Florian Jung <flo@thinkpad.(none)> | 2010-12-30 18:17:09 +0100 |
commit | 4f87806616587c77db352f701ec93410060b5dba (patch) | |
tree | 14b710a3f5b92349262b22cb5e20d9c12aeb47ae /synth/Makefile | |
parent | 7113f02ae87482211aec5046f9ac46c3cc9ad017 (diff) |
Improved Makefile and .gitignore
Diffstat (limited to 'synth/Makefile')
-rw-r--r-- | synth/Makefile | 8 |
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) |