1# Copyright (c) 2013 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5CPPFLAGS += -Wall 6 7# Add pci library on x86 8ifneq (,$(filter $(shell uname -m),x86_64 i686)) 9 LDLIBS += -lpci 10endif 11 12TARGET = smm 13 14all: $(TARGET) 15 16clean: 17 $(RM) $(TARGET) 18