aboutsummaryrefslogtreecommitdiff
path: root/libtokencap/Makefile
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2019-11-11 14:36:06 +0100
committerGitHub <noreply@github.com>2019-11-11 14:36:06 +0100
commit659db7e421b47da4b04110a141d9c20307f74ecc (patch)
tree18f9c38cc5270adcf445a62b974712cead4a01c4 /libtokencap/Makefile
parentcd84339bccc104a51a5da614a9f82cc4ae615cce (diff)
parent01d55372441960c435af8f3bd6b61d1302042728 (diff)
downloadafl++-659db7e421b47da4b04110a141d9c20307f74ecc.tar.gz
Merge branch 'master' into radamsa
Diffstat (limited to 'libtokencap/Makefile')
-rw-r--r--libtokencap/Makefile16
1 files changed, 14 insertions, 2 deletions
diff --git a/libtokencap/Makefile b/libtokencap/Makefile
index 3fd01b2c..6e1319d8 100644
--- a/libtokencap/Makefile
+++ b/libtokencap/Makefile
@@ -2,7 +2,7 @@
# american fuzzy lop - libtokencap
# --------------------------------
#
-# Written by Michal Zalewski <lcamtuf@google.com>
+# Written by Michal Zalewski
#
# Copyright 2016 Google Inc. All rights reserved.
#
@@ -24,6 +24,18 @@ CFLAGS += -Wall -D_FORTIFY_SOURCE=2 -g -Wno-pointer-sign
ifeq "$(shell uname)" "Linux"
TARGETS = libtokencap.so
endif
+ifeq "$(shell uname)" "Darwin"
+ TARGETS = libtokencap.so
+endif
+ifeq "$(shell uname)" "FreeBSD"
+ TARGETS = libtokencap.so
+endif
+ifeq "$(shell uname)" "OpenBSD"
+ TARGETS = libtokencap.so
+endif
+ifeq "$(shell uname)" "NetBSD"
+ TARGETS = libtokencap.so
+endif
all: $(TARGETS)
libtokencap.so: libtokencap.so.c ../config.h
@@ -37,5 +49,5 @@ clean:
install: all
install -m 755 ../libtokencap.so $${DESTDIR}$(HELPER_PATH)
- install -m 644 README.tokencap $${DESTDIR}$(HELPER_PATH)
+ install -m 644 README.tokencap.md $${DESTDIR}$(HELPER_PATH)