diff options
-rw-r--r-- | CHANGELOG.txt | 2 | ||||
-rw-r--r-- | dux/GNUmakefile | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 1fc68c2..f84e52c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -101,6 +101,8 @@ - Implement wrtstr in the same file as wrt; - Implement mov; +- Fix installation script; + | 2↋ - Fix signal pipe being renamed to file; diff --git a/dux/GNUmakefile b/dux/GNUmakefile index 1c7ae20..6e6817f 100644 --- a/dux/GNUmakefile +++ b/dux/GNUmakefile @@ -23,6 +23,7 @@ OBJS := \ HDRS := \ include/dux/dux.h \ + include/dux/fs.h \ include/dux/io.h \ include-private/dux/prv/dux.h @@ -60,7 +61,7 @@ $(OBJS): $(HDRS) install: $(LIB) mkdir -pvm755 "$(HDRDIR)/dux" mkdir -pvm755 "$(LIBDIR)" - install -vm644 "include/dux/"{"dux","io","thr"}".h" "$(HDRDIR)/dux" + install -vm644 "include/dux/"{"dux","fs","io"}".h" "$(HDRDIR)/dux" install -vm755 "$(LIB)" "$(LIBDIR)" clean: |