diff --git a/test/flex_string/Makefile b/test/flex_string/Makefile index b061596..a61a18f 100755 --- a/test/flex_string/Makefile +++ b/test/flex_string/Makefile @@ -1,11 +1,8 @@ -OBJ = main.o -BIN = main-gcc +BIN = main CXXFLAGS = -Wall -O2 CPPFLAGS = -I../../include -DNDEBUG -$(BIN): $(OBJ) - $(CXX) -o $(BIN) $(OBJ) - -.PHONY: clean +.PHONY: build clean +build: $(BIN) clean: rm -f $(OBJ) $(BIN)