diff options
Extracted helper functions and bitmasks into separate compilation unit
* utility.h and utility.cc now contain the UTF8-codepoint and unit bitmasks and read / write functions
* Modified users of these functions and unions accordingly
* Added the new compilation unit to the Makefile
* Changed bitmask specification from plain integer literals to shift expressions for better readability
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,8 @@ CXX = g++ CXXFLAGS = -std=c++11 -W -Wall -Wextra -pedantic -SRC = src/codepoint_iterator.cc \ +SRC = src/utility.cc \ + src/codepoint_iterator.cc \ test.cc OBJ = $(subst .cc,.o,$(SRC)) |