diff options
-rw-r--r-- | CHANGELOG.txt | 2 | ||||
-rw-r--r-- | zp/GNUmakefile | 11 |
2 files changed, 8 insertions, 5 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 76a39d7..8dbae9a 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -159,6 +159,8 @@ * Rename extver to ext; * Rename ver to api; +* Fix installation target; + # 0.0.2 * Migrate to CMake; diff --git a/zp/GNUmakefile b/zp/GNUmakefile index f456505..e1f2d49 100644 --- a/zp/GNUmakefile +++ b/zp/GNUmakefile @@ -143,18 +143,18 @@ LIB := libzp.a endif HDRS := \ - include/zp/zp \ - include/zp/zp.h \ include/zp/mem \ include/zp/mem.h \ include/zp/mth \ include/zp/mth.h \ include/zp/str \ include/zp/str.h \ - include/zp/imp/zp.ii \ + include/zp/zp \ + include/zp/zp.h \ include/zp/imp/mem.ii \ include/zp/imp/mth.ii \ include/zp/imp/str.ii \ + include/zp/imp/zp.ii \ include/zp/prv/arc.h \ include/zp/prv/chr.h \ include/zp/prv/flt.h \ @@ -231,8 +231,9 @@ install: $(LIB) mkdir -pvm755 "$(HDRDIR)/zp/imp" mkdir -pvm755 "$(HDRDIR)/zp/prv" mkdir -pvm755 "$(LIBDIR)" - install -vm644 "include/zp/"{"bas","mem","mth","str"}{"",".h"} "$(HDRDIR)/zp" - install -vm644 "include/zp/imp/"{"bas","mem","mth","str"}".ii" "$(HDRDIR)/zp/imp" + install -vm644 "include/zp/"{"mem","mth","str","zp"}{"",".h"} "$(HDRDIR)/zp" + install -vm644 "include/zp/imp/"{"mem","mth","str","zp"}".ii" "$(HDRDIR)/zp/imp" + install -vm644 "include/zp/prv/"{"arc","chr","flt","imp","int","std","sys"}".h" "$(HDRDIR)/zp/prv" install -vm755 "$(LIB)" "$(LIBDIR)" clean: |