mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-25 01:07:22 +00:00
Also contains some preliminary tests for these primitives. Review URL: http://codereview.chromium.org/553023
18 lines
354 B
Makefile
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
|