diff options
Diffstat (limited to 'usr/src/cmd/ucodeadm/Makefile')
-rw-r--r-- | usr/src/cmd/ucodeadm/Makefile | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/usr/src/cmd/ucodeadm/Makefile b/usr/src/cmd/ucodeadm/Makefile index 1abe8bb420..fe30d02a27 100644 --- a/usr/src/cmd/ucodeadm/Makefile +++ b/usr/src/cmd/ucodeadm/Makefile @@ -39,13 +39,6 @@ include ../Makefile.cmd POFILE = ucodeadm_all.po POFILES = $(PROG_OBJS:%.o=%.po) -INTEL_UCODE_FILE = intel-ucode.txt -AMD_UCODE_FILE = amd-ucode.bin - -ROOTUCODEPATH = $(ROOT)/platform/i86pc/ucode -ROOTINTELUCODE = $(INTEL_UCODE_FILE:%=$(ROOTUCODEPATH)/%) -ROOTAMDUCODE = $(AMD_UCODE_FILE:%=$(ROOTUCODEPATH)/%) - CPPFLAGS = -I../../common -I../../uts/common CFLAGS += $(CCVERBOSE) CERRWARN += -_gcc=-Wno-uninitialized @@ -57,9 +50,6 @@ LDLIBS += -lgen DIRMODE = 0755 FILEMODE = 0555 -$(ROOTINTELUCODE) := FILEMODE = 0444 -$(ROOTAMDUCODE) := FILEMODE = 0444 - install := TARGET = install clobber := TARGET = clobber @@ -69,7 +59,7 @@ CLEANFILES += $(PROG) $(OBJS) ucode_errno.c $(POFILES) $(POFILE) all: $(PROG) -install: all $(ROOTUSRSBINPROG) $(ROOTUCODEPATH) $(ROOTINTELUCODE) $(ROOTAMDUCODE) +install: all $(ROOTUSRSBINPROG) _msg: ucodeadm_all.po @@ -81,12 +71,6 @@ $(PROG): $(OBJS) ucode_errno.c $(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS) $(POST_PROCESS) -$(ROOTUCODEPATH): - $(INS.dir) - -$(ROOTUCODEPATH)/%: % - $(INS.file) - clean: -$(RM) $(CLEANFILES) |