The test is failing on linux. This reverts commits 7fe3586cda5b683766ec6b6d5ca2d98c2baaf162 and d599ac41aabddeb2442db7b31faacf143d63abe4.
17 lines
285 B
Makefile
17 lines
285 B
Makefile
DYLIB_NAME := foo
|
|
DYLIB_CXX_SOURCES := foo.cpp
|
|
CXX_SOURCES := main.cpp
|
|
|
|
LD_EXTRAS := -Wl,-rpath "-Wl,$(shell pwd)"
|
|
USE_LIBDL :=1
|
|
|
|
include Makefile.rules
|
|
|
|
all: a.out.stripped
|
|
|
|
a.out.stripped:
|
|
strip -o a.out.stripped a.out
|
|
|
|
ifneq "$(CODESIGN)" ""
|
|
$(CODESIGN) -fs - a.out.stripped
|
|
endif |