diff options
Diffstat (limited to 'usr/src/lib/abi/Makefile')
-rw-r--r-- | usr/src/lib/abi/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr/src/lib/abi/Makefile b/usr/src/lib/abi/Makefile index ce037a6606..69559a43fa 100644 --- a/usr/src/lib/abi/Makefile +++ b/usr/src/lib/abi/Makefile @@ -22,25 +22,23 @@ # Copyright 2006 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# include $(SRC)/lib/Makefile.lib SUBDIRS = apptrace -all := TARGET = all +all := TARGET = all clean := TARGET = clean clobber := TARGET = clobber install := TARGET = install -lint := TARGET = lint _msg := TARGET = _msg .PARALLEL: .KEEP_STATE: -all clean clobber install lint _msg: $(SUBDIRS) +all clean clobber install _msg: $(SUBDIRS) + $(SUBDIRS): FRC @cd $@; pwd; $(MAKE) $(TARGET) |