diff options
author | Toomas Soome <tsoome@me.com> | 2018-05-21 13:09:58 +0300 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2018-06-02 14:48:51 +0000 |
commit | 207bc6d049369709a154c840750e0a74a9ff0a76 (patch) | |
tree | 066264b39d6276cacd5fecab03fbb3b6f4d0e6ac | |
parent | 62877672b62bfe1e971061803b2a9c64897c13c3 (diff) | |
download | illumos-joyent-207bc6d049369709a154c840750e0a74a9ff0a76.tar.gz |
9544 loader: i386/Makefile should have target all before other targets
Reviewed by: Andrew Stormont <andyjstormont@gmail.com>
Reviewed by: Dan McDonald <danmcd@joyent.com>
Approved by: Robert Mustacchi <rm@joyent.com>
-rw-r--r-- | usr/src/boot/sys/boot/i386/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/boot/sys/boot/i386/Makefile b/usr/src/boot/sys/boot/i386/Makefile index 46db89b56e..55e7d5ca62 100644 --- a/usr/src/boot/sys/boot/i386/Makefile +++ b/usr/src/boot/sys/boot/i386/Makefile @@ -17,7 +17,7 @@ include $(SRC)/Makefile.master # likely targets for removal, keeping around just in case... -# SUBDIRS= boot0 boot0sio kgzldr libfirewire +# SUBDIRS= boot0 boot0sio kgzldr libfirewire # current targets SUBDIRS= pmbr btx cdboot gptzfsboot libi386 loader pxeldr INSTDIRS= pmbr cdboot gptzfsboot loader pxeldr @@ -29,12 +29,12 @@ clobber:= TARGET= clobber .KEEP_STATE: -pxeldr: loader - all clean clobber: $(SUBDIRS) install: all .WAIT $(INSTDIRS) +pxeldr: loader + FRC: $(SUBDIRS): FRC |