| Index: src/platform/vboot_reference/tests/Makefile
|
| diff --git a/src/platform/vboot_reference/tests/Makefile b/src/platform/vboot_reference/tests/Makefile
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e3694cf56defc904fd0e38aaae98d2f0e1b3cf77
|
| --- /dev/null
|
| +++ b/src/platform/vboot_reference/tests/Makefile
|
| @@ -0,0 +1,18 @@
|
| +# 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=sha_tests.c verify_data.c
|
| +OBJS=$(SRCS:.c=.o)
|
| +LIBS=$(TOP)/crypto/libcrypto.a $(TOP)/common/libcommon.a
|
| +
|
| +tests: sha_tests verify_data
|
| +
|
| +sha_tests: sha_tests.c
|
| + $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS)
|
| +
|
| +verify_data: verify_data.c
|
| + $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS)
|
| +
|
| +clean:
|
| + rm -f $(OBJS) sha_tests verify_data
|
|
|