diff options
author | Richard Lowe <richlowe@richlowe.net> | 2011-06-23 09:32:44 -0700 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2011-07-02 22:17:24 -0400 |
commit | 3da5762f46a7a6779ecc7a4accb401588be0cef3 (patch) | |
tree | 2d5108eaf153fb607d5b2e388df8ec0bde84192a /usr/src | |
parent | fba8cba6cb21f9845dfe6145a45b8af9fc15ae94 (diff) | |
download | illumos-joyent-3da5762f46a7a6779ecc7a4accb401588be0cef3.tar.gz |
libc: make install target depend on generated headers
There a handful of generated headers in libc (assym.h), which need to exist
for the build. They're removed by clobber but only created via install_h.
Have 'install' depend on them as well so working in libc is less tedious.
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/lib/libc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/lib/libc/Makefile b/usr/src/lib/libc/Makefile index b75390cbcc..93934954dd 100644 --- a/usr/src/lib/libc/Makefile +++ b/usr/src/lib/libc/Makefile @@ -127,7 +127,7 @@ $(ROOTVARIANTDIR64)/$(VAR1_DYNLIB64) := FILEMODE= 755 .KEEP_STATE: -all: lib32 $(BUILD64) .WAIT lib64 .WAIT etc THIRDPARTYLICENSE +all: all_h lib32 $(BUILD64) .WAIT lib64 .WAIT etc THIRDPARTYLICENSE THIRDPARTYLICENSE: extract-copyright $(RM) $@ |