diff options
Switched to cmake build system
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 6d82904..0000000 --- a/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -CXX = g++ -CXXFLAGS = -std=c++11 -W -Wall -Wextra -pedantic - -SRC = src/utility.cc \ - src/codepoint_iterator.cc \ - test.cc -OBJ = $(subst .cc,.o,$(SRC)) - -all: test - -test: ${OBJ} - $(CXX) -o test -lgtest $(OBJ) - ./test - -.PHONY: clean; -clean: - rm -f $(OBJ) - rm test - -depend: .depend - -.depend: $(SRC) - $(CXX) -M $(CXXFLAGS) $< > $@ - -include .depend |