diff options
| author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2011-10-26 18:33:08 +0000 |
|---|---|---|
| committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2011-10-26 18:33:08 +0000 |
| commit | 06b4ca2cf83e95fa5f4a5526bd98f99eded2fef3 (patch) | |
| tree | c45cb1260c0627b488ff21edb731f7aa05e5f59f /usr/src/Makefile | |
| parent | 861c1bbb67c42a806e1cf3441ce0d35d6605630f (diff) | |
| download | illumos-joyent-06b4ca2cf83e95fa5f4a5526bd98f99eded2fef3.tar.gz | |
OS-696 flock() is missing
Diffstat (limited to 'usr/src/Makefile')
| -rw-r--r-- | usr/src/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/usr/src/Makefile b/usr/src/Makefile index 45252e17c9..ee119b34eb 100644 --- a/usr/src/Makefile +++ b/usr/src/Makefile @@ -42,7 +42,7 @@ $(SPARC_BLD)psm: stand SUBDIRS= $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS) -HDRSUBDIRS= uts head lib cmd +HDRSUBDIRS= uts head lib cmd ucbhead # UCB headers are bug-for-bug compatible and not checkable against the header # standards. @@ -52,7 +52,7 @@ CHKHDRSUBDIRS= head uts lib # # Headers that can be built in parallel # -PARALLEL_HEADERS = sysheaders userheaders libheaders cmdheaders +PARALLEL_HEADERS = sysheaders userheaders libheaders ucbheaders cmdheaders # # Directories that can be built in parallel @@ -149,13 +149,13 @@ closedbins: FRC $(ROOTDIRS) .PARALLEL: $(PARALLEL_HEADERS) DUMMY .PARALLEL: $(PARALLEL_DIRS) DUMMY -$(SUBDIRS) head pkg: FRC +$(SUBDIRS) head ucbhead pkg: FRC @cd $@; pwd; $(MAKE) $(TARGET) # librpcsvc has a dependency on headers installed by # userheaders, hence the .WAIT before libheaders. sgs: rootdirs .WAIT sysheaders userheaders .WAIT \ - libheaders cmdheaders + libheaders ucbheaders cmdheaders # # Top-level setup target to setup the development environment that includes @@ -192,6 +192,9 @@ libheaders: bldtools sysheaders: FRC @cd uts; pwd; $(MAKE) install_h +ucbheaders: FRC + @cd ucbhead; pwd; $(MAKE) install_h + cmdheaders: FRC @cd cmd/fm; pwd; $(MAKE) install_h @cd cmd/mdb; pwd; $(MAKE) install_h |
