Makefile (763f1f5f97e4c16840af2ced98915f0ed0f46616) | Makefile (d32f26eec03290baae31e85e7c5840280d5c4292) |
---|---|
1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE --- 10 unchanged lines hidden (view full) --- 19# CDDL HEADER END 20# 21# 22# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25# Copyright 2017 RackTop Systems. 26# Copyright 2022 OmniOS Community Edition (OmniOSce) Association. | 1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE --- 10 unchanged lines hidden (view full) --- 19# CDDL HEADER END 20# 21# 22# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25# Copyright 2017 RackTop Systems. 26# Copyright 2022 OmniOS Community Edition (OmniOSce) Association. |
27# Copyright 2023 Oxide Computer Company |
|
27# 28 29PROG = ucodeadm 30 31PROG_OBJS = ucodeadm.o ucode_errno.o | 28# 29 30PROG = ucodeadm 31 32PROG_OBJS = ucodeadm.o ucode_errno.o |
32COMMON_OBJS = ucode_utils.o | 33COMMON_OBJS = ucode_utils_intel.o ucode_utils_amd.o |
33OBJS = $(PROG_OBJS) $(COMMON_OBJS) 34COMMON_SRCDIR = ../../common/ucode 35ERROR_HEADER = $(COMMON_SRCDIR)/ucode_errno.h | 34OBJS = $(PROG_OBJS) $(COMMON_OBJS) 35COMMON_SRCDIR = ../../common/ucode 36ERROR_HEADER = $(COMMON_SRCDIR)/ucode_errno.h |
36SRCS = $(PROG_OBJS:%.o=%.c) $(COMMON_OBJS:%.o=$(COMMON_SRCDIR)/%.c) | |
37 38include ../Makefile.cmd 39include ../Makefile.ctf 40 41POFILE = ucodeadm_all.po 42POFILES = $(PROG_OBJS:%.o=%.po) 43 44CSTD = $(GNU_C99) --- 43 unchanged lines hidden --- | 37 38include ../Makefile.cmd 39include ../Makefile.ctf 40 41POFILE = ucodeadm_all.po 42POFILES = $(PROG_OBJS:%.o=%.po) 43 44CSTD = $(GNU_C99) --- 43 unchanged lines hidden --- |