blob: 0b9b9c2c19796555a684d1ded8013d593c0c39b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-native_Makefile,v 1.4 2021/06/02 23:27:11 khorben Exp $
Add support for anything like Linux.
--- native/Makefile.orig 2021-05-18 20:52:07.000000000 +0000
+++ native/Makefile
@@ -1,14 +1,7 @@
UNAME := $(shell uname)
ifeq ($(UNAME), Darwin)
LIB_ANGR_NATIVE=angr_native.dylib
-endif
-ifeq ($(UNAME), FreeBSD)
- LIB_ANGR_NATIVE=angr_native.so
-endif
-ifeq ($(UNAME), Linux)
- LIB_ANGR_NATIVE=angr_native.so
-endif
-ifeq ($(UNAME), OpenBSD)
+else
LIB_ANGR_NATIVE=angr_native.so
endif
|