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.
16 lines
296 B
16 lines
296 B
include ../Makefile.conf
|
|
|
|
LDFLAGS=-L../ $(ENGINE_LIB)
|
|
LDLIBS=-lstdc++ -lpEpEngine -lpEpAdapter
|
|
CXXFLAGS+=-I../ $(ENGINE_INC) -std=c++11 -DENGINE_TEST=$(ENGINE_TEST)
|
|
|
|
SRC=$(wildcard test_*.cc)
|
|
TST=$(subst .cc,,$(SRC))
|
|
|
|
all: $(TST)
|
|
|
|
%: %.cc ../libpEpAdapter.a
|
|
|
|
clean:
|
|
rm -f $(TST)
|
|
rm -Rf *.dSYM
|
|
|