From: Bartosz Golaszewski Date: Thu, 9 Feb 2017 13:51:53 +0000 (+0100) Subject: make: simplify Makefile.am in src/ X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=27efb473ea4887f4371c1e33815db6301e71fc58;p=qemu-gpiodev%2Flibgpiod.git make: simplify Makefile.am in src/ Drop the redundant variable and use SUBDIRS directly. Signed-off-by: Bartosz Golaszewski --- 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)