diff options
author | June McEnroe <june@causal.agency> | 2018-09-17 22:54:38 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-09-17 22:54:38 -0400 |
commit | 50c567fbef45f627de3e79d5b2830b1c969ad607 (patch) | |
tree | c8443c89cf3e3d84165d247062f5a498f75bbe89 | |
parent | Make install target depend on text files (diff) | |
download | src-50c567fbef45f627de3e79d5b2830b1c969ad607.tar.gz src-50c567fbef45f627de3e79d5b2830b1c969ad607.zip |
Use install(1) to install
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index f5ded14a..3b9f83e2 100644 --- a/Makefile +++ b/Makefile @@ -13,4 +13,4 @@ clean: rm -f $(TXTS) install: $(TXTS) - cp $(TXTS) $(WEBROOT) + install -p -m 644 $(TXTS) $(WEBROOT) |