You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
487 B
24 lines
487 B
# Copyright 2022, pEp Foundation
|
|
# This file is part of libpEpCxx11
|
|
# This file may be used under the terms of the GNU General Public License version 3
|
|
# see LICENSE
|
|
|
|
include ../Makefile.conf
|
|
|
|
CXXFLAGS:=-I../src $(CXXFLAGS)
|
|
LDFLAGS:=-L../src $(LDFLAGS)
|
|
LDLIBS=-lstdc++ -lpEpCxx11 -lpthread -lm
|
|
CXXFLAGS:=-I../src $(CXXFLAGS)
|
|
|
|
# Test
|
|
SRC_TEST=$(wildcard test_*.cc)
|
|
BIN_TEST=$(subst .cc,,$(SRC_TEST))
|
|
|
|
.PHONY: tests, all, clean
|
|
|
|
all: $(BIN_TEST)
|
|
|
|
|
|
clean:
|
|
rm -Rf *.dSYM
|
|
rm -f $(BIN_TEST)
|
|
|