Makefile: Also build osl.h by default.
authorAndre Noll <maan@tuebingen.mpg.de>
Mon, 15 Jun 2020 14:29:52 +0000 (16:29 +0200)
committerAndre Noll <maan@tuebingen.mpg.de>
Mon, 15 Jun 2020 14:29:52 +0000 (16:29 +0200)
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.

Makefile

index db345b43a90a242501fba9557dc3872e1e56ccfe..aa0e6f6d06c704008292e077bd21bf9e18a43180 100644 (file)
--- 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)),)