Compare commits
No commits in common. "e26a93806edd0ed0af960c012b7c163f5fe41850" and "a51dce6e2c3123cf6722c99bf01885ad488b52b2" have entirely different histories.
e26a93806e
...
a51dce6e2c
6
Makefile
6
Makefile
|
@ -212,7 +212,7 @@ install_docs: docs
|
|||
ifneq (${FREESTANDING},yes)
|
||||
check: check_libucontext_posix
|
||||
|
||||
check_libucontext_posix: test_libucontext_posix ${LIBUCONTEXT_POSIX_SONAME} ${LIBUCONTEXT_SONAME}
|
||||
check_libucontext_posix: test_libucontext_posix ${LIBUCONTEXT_POSIX_SONAME}
|
||||
env LD_LIBRARY_PATH=$(shell pwd) ./test_libucontext_posix
|
||||
|
||||
test_libucontext_posix: test_libucontext_posix.c ${LIBUCONTEXT_POSIX_NAME}
|
||||
|
@ -229,11 +229,9 @@ test_libucontext_bare_posixabi: test_libucontext_posix.c ${LIBUCONTEXT_NAME}
|
|||
$(CC) -std=gnu99 -D_BSD_SOURCE ${CFLAGS} ${CPPFLAGS} test_libucontext_posix.c -o $@ -L. -lucontext
|
||||
endif
|
||||
|
||||
check_libucontext: test_libucontext ${LIBUCONTEXT_SONAME}
|
||||
check: test_libucontext ${LIBUCONTEXT_SONAME}
|
||||
env LD_LIBRARY_PATH=$(shell pwd) ./test_libucontext
|
||||
|
||||
check: check_libucontext
|
||||
|
||||
test_libucontext: test_libucontext.c ${LIBUCONTEXT_NAME}
|
||||
$(CC) -std=gnu99 -D_BSD_SOURCE ${CFLAGS} ${CPPFLAGS} $@.c -o $@ -L. -lucontext
|
||||
|
||||
|
|
Loading…
Reference in New Issue