Files
plugins/Makefile
T
Fabian Franz, BSc b8ca2c76d1 net/redis: add Redis Server (#371)
* add redis
* add general to model
* temlate: add slowlog etc.
* form seem ok
* improve menu style
* add service controller
* select picker: bootstrap style
* copy pkg-descr from ports tree
* mv redis to db
* add category databases and update readme
2017-11-15 18:33:49 +01:00

32 lines
670 B
Makefile

PAGER?= less
all:
@cat ${.CURDIR}/README.md | ${PAGER}
CATEGORIES= databases devel dns net-mgmt net mail security sysutils www
.for CATEGORY in ${CATEGORIES}
_${CATEGORY}!= ls -1d ${CATEGORY}/*
PLUGIN_DIRS+= ${_${CATEGORY}}
.endfor
list:
.for PLUGIN_DIR in ${PLUGIN_DIRS}
@echo ${PLUGIN_DIR} -- $$(${MAKE} -C ${PLUGIN_DIR} -V PLUGIN_COMMENT)
.endfor
# shared targets that are sane to run from the root directory
TARGETS= lint sweep style style-fix clean
.for TARGET in ${TARGETS}
${TARGET}:
. for PLUGIN_DIR in ${PLUGIN_DIRS}
@${MAKE} -C ${PLUGIN_DIR} ${TARGET}
. endfor
.endfor
license:
@${.CURDIR}/Scripts/license . > ${.CURDIR}/LICENSE
.PHONY: license