Print this page
re #13553 rb4471 add ipkg brand scripts
*** 20,44 ****
#
#
# Copyright 2010 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
default: all
! # Build everything in parallel; use .WAIT for dependencies
! .PARALLEL:
SUBDIRS = zone
all := TARGET= all
install := TARGET= install
clean := TARGET= clean
clobber := TARGET= clobber
lint := TARGET= lint
! all install clean clobber lint: $(SUBDIRS)
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
FRC:
--- 20,55 ----
#
#
# Copyright 2010 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
+ # Copyright 2013 Nexenta Systems, Inc. All rights reserved.
+ #
default: all
! include Makefile.ipkg
SUBDIRS = zone
all := TARGET= all
install := TARGET= install
clean := TARGET= clean
clobber := TARGET= clobber
lint := TARGET= lint
+ _msg := TARGET= _msg
! INSDIRS = $(ETCBRANDDIR) $(ROOTBRANDDIR)
+ all clean clobber lint _msg: $(SUBDIRS)
+
+ install: insdirs .WAIT $(SUBDIRS)
+
+ insdirs: $(INSDIRS)
+
+ $(ETCBRANDDIR) $(ROOTBRANDDIR) $(ROOTBRANDDIR64):
+ $(INS.dir)
+
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
FRC: