| Index: src/platform/vboot_reference/common/Makefile
|
| diff --git a/src/platform/vboot_reference/common/Makefile b/src/platform/vboot_reference/common/Makefile
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..51d482e2062a8314ae33debbbc5b36c5ea378c88
|
| --- /dev/null
|
| +++ b/src/platform/vboot_reference/common/Makefile
|
| @@ -0,0 +1,17 @@
|
| +# Copyright (c) 2010 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.
|
| +
|
| +SRCS=utility_stub.c
|
| +OBJS=$(SRCS:.c=.o)
|
| +
|
| +all: libcommon.a
|
| +
|
| +libcommon.a: $(OBJS)
|
| + ar rs $@ $<
|
| +
|
| +.c.o: $(OBJS)
|
| + $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
| +
|
| +clean:
|
| + rm -f $(OBJS) libcommon.a
|
|
|