From 128a37397432e5e63099633e275c65a652c16673 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Fri, 26 Dec 2014 18:12:28 +0100 Subject: [PATCH] Linux doesn't like .PHONY .o files. In order to please every OS, make version.c .PHONY again, and add an empty rule to make version.c. --- src/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 6414cdfc..cd84f3a8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,7 +3,8 @@ sbin_PROGRAMS = tincd tinc sptps_test sptps_keypair ## Make sure version.c is always rebuilt -.PHONY: version.o +.PHONY: version.c +version.c: if LINUX sbin_PROGRAMS += sptps_speed -- 2.20.1