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.
27 lines
696 B
27 lines
696 B
include ../Makefile.conf
|
|
|
|
LDFLAGS=-L../ $(ENGINE_LIB)
|
|
LDLIBS=-lstdc++ -lpEpEngine -lpEpAdapter
|
|
CXXFLAGS+=-I../
|
|
|
|
.PHONY=all, test_adapter, test_adapter_cxx, test_library
|
|
|
|
all: test_adapter test_adapter_cxx test_library test_passphrase_cache test_semaphore
|
|
|
|
test_adapter: test_adapter.cc ../libpEpAdapter.a
|
|
|
|
test_adapter_cxx: test_adapter_cxx.cc ../libpEpAdapter.a
|
|
|
|
test_library: test_library.cc ../libpEpAdapter.a
|
|
|
|
test_passphrase_cache: test_passphrase_cache.cc ../libpEpAdapter.a
|
|
|
|
test_semaphore: test_semaphore.cc ../libpEpAdapter.a
|
|
|
|
clean:
|
|
rm -vf test_adapter
|
|
rm -rvf test_adapter.dSYM
|
|
rm -vf test_adapter_cxx
|
|
rm -rvf test_adapter_cxx.dSYM
|
|
rm -vf test_library
|
|
rm -rvf test_library.dSYM
|
|
|