From 27efb473ea4887f4371c1e33815db6301e71fc58 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Thu, 9 Feb 2017 14:51:53 +0100 Subject: [PATCH] make: simplify Makefile.am in src/ Drop the redundant variable and use SUBDIRS directly. Signed-off-by: Bartosz Golaszewski --- src/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 1fd498a..e7b0a86 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,10 +6,10 @@ # as published by the Free Software Foundation. # +SUBDIRS = lib + if WITH_TOOLS -TOOLS_SUBDIR = tools +SUBDIRS += tools endif - -SUBDIRS = . lib $(TOOLS_SUBDIR) -- 2.30.2