blob: 69a52db4bc8097dc887ff0490db51a16de00b083 [file] [log] [blame]
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
CPPFLAGS += -Wall
# Add pci library on x86
ifneq (,$(filter $(shell uname -m),x86_64 i686))
LDLIBS += -lpci
endif
TARGET = smm
all: $(TARGET)
clean:
$(RM) $(TARGET)