blob: c192452d920e3bb156290c5b96e0e39ae7789f46 [file] [log] [blame]
Zhongze Huf8cdd792017-04-13 09:43:25 -07001# Copyright (c) 2012 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
5include common.mk
6
Qijiang Fan237ad182020-10-28 18:41:55 +09007PC_DEPS = libbrillo libchrome
Zhongze Hu793f51c2017-06-06 11:52:23 -07008PC_CFLAGS := $(shell $(PKG_CONFIG) --cflags $(PC_DEPS))
9PC_LIBS := $(shell $(PKG_CONFIG) --libs $(PC_DEPS))
10LDLIBS += $(PC_LIBS)
11
12CPPFLAGS += $(PC_CFLAGS)
13
Zhongze Huf8cdd792017-04-13 09:43:25 -070014all: CXX_BINARY(sis-updater)
15
16CXX_BINARY(sis-updater): src/sis_fw_updater.o
17
18clean: CLEAN(CXX_BINARY(sis-updater))