diff options
author | Roland Reichwein <mail@reichwein.it> | 2022-01-01 20:25:34 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2022-01-01 20:25:34 +0100 |
commit | 52d4375b10d920a59f1309c272a2e525feb1c25d (patch) | |
tree | 9d5417a9d214f4b0ba68b75e8908e28da46dd5c8 /Makefile | |
parent | ae7b430afd1239947b8f8b2d9dc0ca72dbce91ac (diff) |
Separated out headers files; optimizations; type traits; better naming
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -96,8 +96,8 @@ src/recode: src/recode.o src/file.o dep src/validate: src/validate.o src/file.o dep $(CXX) $(LDFLAGS) src/validate.o src/file.o $(LDLIBS) $(LIBS) -o $@ -src/test-unicode: src/test-unicode.o src/file.o dep - $(CXX) $(LDFLAGS) $< $(LDLIBS) $(LIBS) -o $@ +src/test-unicode: src/test-unicode.o dep + $(CXX) $(LDFLAGS) src/test-unicode.o $(LDLIBS) $(LIBS) -o $@ dep: $(SRC:.cpp=.d) @@ -139,6 +139,7 @@ DISTFILES= \ src/file.h \ Makefile \ include/unicode.h \ + include/unicode/type_traits.h \ debian/control \ debian/compat \ debian/copyright \ |