mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-26 19:25:02 +00:00
Also, adds a simple analog of verify_data. BUG=none TEST=none Review URL: http://codereview.chromium.org/578025
21 lines
627 B
Makefile
21 lines
627 B
Makefile
# 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.
|
|
|
|
LIBS=-lcrypto
|
|
FIRMWARELIBS=$(TOP)/crypto/libcrypto.a $(TOP)/common/libcommon.a
|
|
|
|
all: dumpRSAPublicKey verify_data signature_digest
|
|
|
|
dumpRSAPublicKey: dumpRSAPublicKey.c
|
|
$(CC) $(CFLAGS) $(LIBS) $< -o $@
|
|
|
|
verify_data: verify_data.c
|
|
$(CC) $(CFLAGS) -DNDEBUG $(INCLUDES) $< -o $@ $(FIRMWARELIBS)
|
|
|
|
signature_digest: signature_digest.c
|
|
$(CC) $(CFLAGS) -DNDEBUG $(INCLUDES) $< -o $@ $(FIRMWARELIBS)
|
|
|
|
clean:
|
|
rm -f dumpRSAPublicKey verify_data signature_digest
|