]> git.cameronkatri.com Git - opendircolors.git/blob - Makefile
Update README.md
[opendircolors.git] / Makefile
1 PROGS= opendircolors dirconvert
2 SRCS.opendircolors= opendircolors.c common.c
3 SRCS.dirconvert= dirconvert.c common.c
4
5 BINDIR?=/usr/local/bin
6 MANDIR?=/usr/local/man/man
7 SYMLINKS= opendircolors ${BINDIR}/dircolors
8 SYMLINKS+= opendircolors.1.gz ${MANDIR}1/dircolors.1.gz
9
10 MAKEOBJDIR=obj
11
12 format:
13 find ${.CURDIR} -type f -name '*.c' -exec clang-format -i {} \;
14
15 .include <bsd.progs.mk>