1234567891011121314 |
- DYLIB_SUFFIX=unknown
- UNAME_S := $(shell uname -s)
- ifeq ($(UNAME_S), Linux)
- DYLIB_SUFFIX=.so
- endif
- ifeq ($(UNAME_S), Darwin)
- DYLIB_SUFFIX=.dylib
- endif
- ifeq ($(DYLIB_SUFFIX), unknown)
- $(error Unsupported operating system)
- else
- DYLIB := libjump$(DYLIB_SUFFIX)
- endif
|