Files
OpenCellular/common/Makefile
Gaurav Shah 322536d2f9 RSA signature verification and SHA-1/256/512 reference implementation for verified boot.
Also contains some preliminary tests for these primitives.

Review URL: http://codereview.chromium.org/553023
2010-01-28 15:01:23 -08:00

18 lines
354 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.
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