From: Andre Noll Date: Mon, 15 Jun 2020 14:29:52 +0000 (+0200) Subject: Makefile: Also build osl.h by default. X-Git-Tag: v0.2.0~7^2 X-Git-Url: http://git.tuebingen.mpg.de/COPYING.html?a=commitdiff_plain;h=081b6cc153b9bec96fa22940b09ba6f82fd12d50;p=osl.git Makefile: Also build osl.h by default. Otherwise it gets built as root during make install and is thus owned by root. This may cause problems, for example if the source resides on an NFS mounted directory where root is not allowed to write. --- diff --git a/Makefile b/Makefile index db345b4..aa0e6f6 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,7 @@ realname := $(soname).$(y).$(z) # soname without any version number. linkername := lib$(libname).so -all: $(realname) $(executables) $(man_pages) +all: $(realname) $(executables) $(man_pages) $(headers) shared: $(realname) ifeq ($(findstring clean, $(MAKECMDGOALS)),)