Print this page
7192 Remove SPARC-only ONLY64 option

@@ -19,10 +19,12 @@
 # CDDL HEADER END
 #
 # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
 # Use is subject to license terms.
 #
+# Copyright 2016 RackTop Systems.
+#
 # cmd/ps/Makefile
 #
 
 PROG= ps
 OBJS=ps.o ucbps.o

@@ -36,11 +38,12 @@
 
 ROOTUCBPROG = $(ROOT)/usr/ucb/$(PROG)
 ROOTUCBPROG32 = $(ROOT)/usr/ucb/$(MACH32)/$(PROG)
 ROOTUCBPROG64 = $(ROOT)/usr/ucb/$(MACH64)/$(PROG)
 
-$(64ONLY)SUBDIRS= $(MACH)
+SUBDIRS=
+$(INTEL_BLD)SUBDIRS += $(MACH)
 $(BUILD64)SUBDIRS += $(MACH64)
 
 all     :=      TARGET = all
 install :=      TARGET = install
 clean   :=      TARGET = clean

@@ -56,12 +59,12 @@
 install:        $(SUBDIRS)
         -$(RM) $(ROOTPROG)
         -$(LN) $(ISAEXEC) $(ROOTPROG)
         -$(RM) $(ROOTUCBPROG)
         -$(LN) $(ISAEXEC) $(ROOTUCBPROG)
-        $(64ONLY)-$(RM) $(ROOTUCBPROG32)
-        $(64ONLY)-$(LN) $(ROOTPROG32) $(ROOTUCBPROG32)
+        $(INTEL_BLD)-$(RM) $(ROOTUCBPROG32)
+        $(INTEL_BLD)-$(LN) $(ROOTPROG32) $(ROOTUCBPROG32)
         $(BUILD64)-$(RM) $(ROOTUCBPROG64)
         $(BUILD64)-$(LN) $(ROOTPROG64) $(ROOTUCBPROG64)
 
 $(SUBDIRS):     FRC
         @cd $@; pwd; $(MAKE) $(TARGET)