From: Alan T. DeKok Date: Tue, 8 Jun 2021 19:16:51 +0000 (-0400) Subject: add more scan targets, so we don't have to re-build everything X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d57a833ac736eac511b4fd900ecf5d6594604952;p=thirdparty%2Ffreeradius-server.git add more scan targets, so we don't have to re-build everything --- diff --git a/scripts/boiler.mk b/scripts/boiler.mk index 0315cac58e0..5d771eb2086 100644 --- a/scripts/boiler.mk +++ b/scripts/boiler.mk @@ -741,6 +741,25 @@ endif scan: ${ALL_PLISTS} +scan.protocols: $(filter build/plist/src/protocols/%,$(ALL_PLISTS)) + +scan.modules: $(filter build/plist/src/modules/%,$(ALL_PLISTS)) + +scan.unlang: $(filter build/plist/src/lib/unlang/%,$(ALL_PLISTS)) + +scan.server: $(filter build/plist/src/lib/server/%,$(ALL_PLISTS)) + +.PHONY: scan.help +scan.help: + @echo "" + @echo "Make targets:" + @echo " scan - scan all source" + @echo " scan.protocols - scan src/protocols" + @echo " scan.modules - scan src/modules" + @echo " scan.server - scan src/lib/server" + @echo " scan.unlang - scan src/lib/unlang" + + .PHONY: clean.scan clean.scan: $(Q)rm -rf ${ALL_PLISTS}