diff options
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 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) |