diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-16 00:00:04 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-16 00:00:04 +0000 |
commit | e814b463a7a42e6c2d67cac00e064afd9602a939 (patch) | |
tree | 27381564f0d8de994dd66aa889fa978947a7ed64 /package | |
parent | 20427e636ad8c2af83cc3b3337306cf72ce55440 (diff) | |
download | s6-dns-e814b463a7a42e6c2d67cac00e064afd9602a939.tar.xz |
Fix include order in Makefile
Diffstat (limited to 'package')
-rw-r--r-- | package/targets.mak | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/package/targets.mak b/package/targets.mak index dbc4608..78af02f 100644 --- a/package/targets.mak +++ b/package/targets.mak @@ -1,4 +1,4 @@ -BIN_TARGETS = \ +BIN_TARGETS := \ skadnsd \ s6-randomip \ s6-dnsqualify \ @@ -16,12 +16,12 @@ s6-dnsname-filter \ s6-dnsq \ s6-dnsqr -LIBEXEC_TARGETS = +LIBEXEC_TARGETS := -SHARED_LIBS = \ -libs6dns.so \ -libskadns.so +ifdef DO_SHARED +SHARED_LIBS := libs6dns.so libskadns.so +endif -STATIC_LIBS = \ -libs6dns.a \ -libskadns.a +ifdef DO_STATIC +STATIC_LIBS := libs6dns.a libskadns.a +endif |