diff options
author | Gordon Ross <gordon.w.ross@gmail.com> | 2016-10-29 16:45:16 -0400 |
---|---|---|
committer | Gordon Ross <gordon.w.ross@gmail.com> | 2016-11-03 22:19:52 -0400 |
commit | 959518b561cad2acd3fbb15387db85b614d41262 (patch) | |
tree | 66a42842de3782dced2e6a9a9e52d8519e319a40 | |
parent | 34d1a9a8c08bc2fbba016a1d29d4e35cf689ab6b (diff) | |
download | illumos-gfx-drm-DRM_BASE_ONSKEL.tar.gz |
Just do make install_h in all libs instead of keeping two dir lists.DRM_BASE_ONSKEL
Those with none can provide an empty install_h target.
-rw-r--r-- | usr/src/lib/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/usr/src/lib/Makefile b/usr/src/lib/Makefile index 145a633..d961af6 100644 --- a/usr/src/lib/Makefile +++ b/usr/src/lib/Makefile @@ -70,14 +70,6 @@ sparc_MSGSUBDIRS= i386_MSGSUBDIRS= -HDRSUBDIRS= \ - libfoo \ - $($(MACH)_HDRSUBDIRS) - -i386_HDRSUBDIRS= - -sparc_HDRSUBDIRS= - all := TARGET= all check := TARGET= check clean := TARGET= clean @@ -97,7 +89,7 @@ install: $(SUBDIRS) clean clobber lint: $(NOWAIT_SUBDIRS) -install_h check: $(HDRSUBDIRS) +install_h check: $(SUBDIRS) _msg: $(MSGSUBDIRS) .WAIT _dc |