diff options
author | Richard Lowe <richlowe@richlowe.net> | 2021-02-11 15:01:40 -0600 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2021-02-20 16:14:32 -0600 |
commit | 3aa6c13072f3d4792a18693e916aed260a496c1f (patch) | |
tree | 443eae60dcdecc4c71c7834204a07b7ba1100f98 /usr/src/stand/lib | |
parent | 1f0845f1dfb179d6aa598ad89bb44d432f4e1020 (diff) | |
download | illumos-gate-3aa6c13072f3d4792a18693e916aed260a496c1f.tar.gz |
13558 remove support for optional subdirectories in the build
Reviewed by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
Reviewed by: Toomas Soome <tsoome@me.com>
Reviewed by: Yuri Pankov <yuripv@yuripv.dev>
Approved by: Gordon Ross <gordon.w.ross@gmail.com>
Diffstat (limited to 'usr/src/stand/lib')
-rw-r--r-- | usr/src/stand/lib/Makefile | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/usr/src/stand/lib/Makefile b/usr/src/stand/lib/Makefile index 154094db33..c578595c45 100644 --- a/usr/src/stand/lib/Makefile +++ b/usr/src/stand/lib/Makefile @@ -31,12 +31,6 @@ sparc_SUBDIRS = SUBDIRS = fs/hsfs fs/nfs fs/ufs inet sa sock tcpstubs xdr \ tcp $($(MACH)_SUBDIRS) -LINTSUBDIRS = $(SUBDIRS) - -# -# We can get away with this since we're only building .a's, and by the -# time we run lint all of the lint libraries have already been built. -# .PARALLEL: $(SUBDIRS) .KEEP_STATE: @@ -45,23 +39,11 @@ all := TARGET = all clean := TARGET = clean clobber := TARGET = clobber install := TARGET = install -lint := TARGET = lint all clean clobber install: $(SUBDIRS) -lint: $(LINTSUBDIRS) - -# -# The reason this rule checks for the existence of the -# Makefile is that some of the directories do not exist -# in our exportable source builds. -# $(SUBDIRS): FRC - @if [ -f $@/Makefile ]; then \ - cd $@; pwd; $(MAKE) $(TARGET); \ - else \ - true; \ - fi + cd $@; pwd; $(MAKE) $(TARGET) FRC: |