diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | CHANGELOG.txt | 3 | ||||
-rw-r--r-- | dux/GNUmakefile | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -3,4 +3,3 @@ *.so /demo /testdir -/tmp diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c2f3082..285e5ba 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -75,6 +75,9 @@ - Implement sttpth; - Update parameters to sttpth; +- Fix installation target; +- Update gitignore; + | 2↋ - Fix signal pipe being renamed to file; diff --git a/dux/GNUmakefile b/dux/GNUmakefile index adc8420..c083dca 100644 --- a/dux/GNUmakefile +++ b/dux/GNUmakefile @@ -55,7 +55,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","io"}".h" "$(HDRDIR)/dux" install -vm755 "$(LIB)" "$(LIBDIR)" clean: |