c6235a9a0f
Add test suite for netlink and weighted reachable components. We don't have a great way of running components through unit tests today, so make them stand-alone tests that are run with mpirun and such. Signed-off-by: Brian Barrett <bbarrett@amazon.com>
20 строки
281 B
Makefile
20 строки
281 B
Makefile
# Copyright (c) 2017 Amazon.com, Inc. or its affiliates. All Rights
|
|
# reserved.
|
|
#
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
PROGS = reachable_weighted reachable_netlink
|
|
|
|
all: $(PROGS)
|
|
|
|
CC = ortecc
|
|
CFLAGS = -g
|
|
|
|
clean:
|
|
rm -f $(PROGS) *~
|