aboutsummaryrefslogtreecommitdiff
path: root/utils/find_roa/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'utils/find_roa/Makefile')
-rw-r--r--utils/find_roa/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/utils/find_roa/Makefile b/utils/find_roa/Makefile
new file mode 100644
index 00000000..7d47e9b6
--- /dev/null
+++ b/utils/find_roa/Makefile
@@ -0,0 +1,24 @@
+# $Id$
+
+OPENSSL_DIR = ../../openssl/openssl
+
+CFLAGS = -g -I${OPENSSL_DIR}/include
+
+# -H -Wl,-t
+
+NAME = find_roa
+
+BIN = ${NAME}
+OBJ = ${NAME}.o
+LIB = ${OPENSSL_DIR}/libcrypto.a
+
+all: ${BIN}
+
+clean:
+ rm -f ${BIN} ${OBJ}
+
+${BIN}: ${OBJ} ${LIB} Makefile
+ ${CC} -g -o $@ ${OBJ} ${LIB}
+
+test:
+ @true