From: Alan T. DeKok Date: Mon, 14 Jun 2021 18:48:26 +0000 (-0400) Subject: move binaries to the end of the include list X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2d51ed19b84bb5a2023dbc3e61cf3e8f8a89411;p=thirdparty%2Ffreeradius-server.git move binaries to the end of the include list so that all pre-requisite libraries are included before the binaries. This change helps us do automatic recursive resolution. --- diff --git a/src/all.mk b/src/all.mk index 4dd187ed5f9..ce546297c73 100644 --- a/src/all.mk +++ b/src/all.mk @@ -3,9 +3,9 @@ all: SUBMAKEFILES := include/all.mk \ lib/all.mk \ - bin/all.mk \ protocols/all.mk \ listen/all.mk \ process/all.mk \ modules/all.mk \ + bin/all.mk \ tests/all.mk