aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-04-25 16:48:29 -0400
committerCameron Katri <me@cameronkatri.com>2021-04-25 16:48:29 -0400
commitefce3ace762149a406659a6d3614846a4b24c498 (patch)
tree7b16fe36736124a1b661bdbfc6d593b04e0c6239 /Makefile
parente0aa299f91fc0afc516cc107eed847ce28b3ebe1 (diff)
downloadopendircolors-efce3ace762149a406659a6d3614846a4b24c498.tar.gz
opendircolors-efce3ace762149a406659a6d3614846a4b24c498.tar.zst
opendircolors-efce3ace762149a406659a6d3614846a4b24c498.zip
Split for future dircolors
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 2cf3c76..187a515 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,14 @@
-PROG= opendircolors
-SRCS= convert.c
+PROGS= opendircolors dirconvert
+SRCS.opendircolors= opendircolors.c
+SRCS.dirconvert= dirconvert.c
+#TODO: Write manpage
MAN=
BINDIR=/usr/local/bin
-LINKS= ${BINDIR}/opendircolors ${BINDIR}/dircolors
+SYMLINKS=opendircolors ${BINDIR}/dircolors
+#TODO: Write manpage
+#MLINKS= opendircolors.1 dircolors.1
MAKEOBJDIR=obj
-.include <bsd.prog.mk>
+.include <bsd.progs.mk>