diff options
author | June McEnroe <june@causal.agency> | 2018-11-25 23:37:32 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-11-25 23:37:32 -0500 |
commit | e97ce8e615b7bc2fbb325fb8aa4727a44ee3dd4c (patch) | |
tree | ec2413b9754199d903299afa3b3b6aaa8c22eb45 /port/file2c/Makefile | |
parent | Return enum Error from file functions in edi (diff) | |
download | src-e97ce8e615b7bc2fbb325fb8aa4727a44ee3dd4c.tar.gz src-e97ce8e615b7bc2fbb325fb8aa4727a44ee3dd4c.zip |
Add "ports" of some FreeBSD utilities for macOS
Diffstat (limited to '')
-rw-r--r-- | port/file2c/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/port/file2c/Makefile b/port/file2c/Makefile new file mode 100644 index 00000000..b8b03e3c --- /dev/null +++ b/port/file2c/Makefile @@ -0,0 +1,11 @@ +PREFIX = ~/.local + +file2c: + +clean: + rm -f file2c + +install: + mkdir -p ~/.local/bin ~/.local/share/man/man1 + cp file2c ~/.local/bin + cp file2c.1 ~/.local/share/man/man1 |