summaryrefslogtreecommitdiff
path: root/cros_ec/Makefile
blob: ff59ee3b501cd7b700943d1f7a8f73c10f77ae85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright (c) 2011 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.

LIB_SRCS=\
	lib/ec_console.c

STUB_SRCS=\
	chip_stub/ec_uart.c

all: fakemain

clean:
	rm -f fakemain

fakemain: test/fakemain.c $(LIB_SRCS) $(STUB_SRCS)
	gcc -Wall -I include -o fakemain test/fakemain.c \
	$(LIB_SRCS) $(STUB_SRCS)