2009-03-25 20:53:26 +01:00
|
|
|
PKGNAME radare2
|
2011-03-04 02:36:25 +01:00
|
|
|
VERSION 0.7
|
2009-03-25 20:53:26 +01:00
|
|
|
CONTACT pancake ; pancake@nopcode.org
|
|
|
|
|
|
|
|
LANG_C!
|
|
|
|
|
2009-04-19 20:55:25 +00:00
|
|
|
ARG_WITHOUT DEBUGGER debugger disable native debugger features ;
|
|
|
|
|
2010-01-15 13:02:54 +01:00
|
|
|
(( -ldl -dynamic ... ))
|
|
|
|
USE_DL
|
|
|
|
|
2010-01-12 19:57:33 +01:00
|
|
|
CHECK_ENDIAN
|
2009-03-31 00:57:39 +00:00
|
|
|
CHKLIB ewf
|
|
|
|
ARG_WITHOUT HAVE_EWF ewf disable EWF dependency ;
|
2010-05-24 11:15:32 +02:00
|
|
|
IFNOT HAVE_EWF { HAVE_LIB_EWF = 0 ; }
|
|
|
|
|
|
|
|
CHKLIB gmp
|
|
|
|
ARG_WITHOUT HAVE_GMP gmp disable GMP dependency ;
|
|
|
|
IFNOT HAVE_GMP { HAVE_LIB_GMP = 0 ; }
|
2009-03-31 00:57:39 +00:00
|
|
|
|
2011-02-23 19:11:39 +01:00
|
|
|
CHKLIB magic
|
|
|
|
|
2010-10-25 13:20:26 +02:00
|
|
|
CHKLIB ssl
|
|
|
|
ARG_WITHOUT HAVE_OPENSSL ssl disable openssl dependency ;
|
|
|
|
IFNOT HAVE_OPENSSL { HAVE_LIB_SSL = 0 ; }
|
2010-07-16 23:13:34 +02:00
|
|
|
|
2010-02-03 14:34:00 +01:00
|
|
|
CHKLIB lua5.1
|
2009-04-06 22:53:25 +00:00
|
|
|
CHKLIB tcc
|
|
|
|
|
2009-04-03 11:11:17 +00:00
|
|
|
(( rules for the compiler ))
|
|
|
|
ARG_WITH USERCC=gcc compiler Define compiler to use (see mk/) ;
|
2010-02-21 20:49:39 +01:00
|
|
|
ARG_WITH USEROSTYPE=auto ostype Choose OS type ( gnulinux windows darwin ) ;
|
2010-02-21 20:24:28 +01:00
|
|
|
|
|
|
|
(( TODO: throw error if unknown ostype ))
|
2010-07-03 03:35:26 +02:00
|
|
|
(( TODO: handle BSD os as different ostype? ))
|
2010-02-21 20:49:39 +01:00
|
|
|
IFEQ USEROSTYPE auto ; {
|
2010-02-21 20:24:28 +01:00
|
|
|
IFEQ HOST_OS linux ; {
|
|
|
|
USEROSTYPE = gnulinux ;
|
|
|
|
}{
|
2010-07-03 03:35:26 +02:00
|
|
|
IFEQ HOST_OS netbsd ; {
|
|
|
|
USEROSTYPE = gnulinux ;
|
|
|
|
}{
|
|
|
|
IFEQ HOST_OS freebsd ; {
|
|
|
|
USEROSTYPE = gnulinux ;
|
|
|
|
}{
|
|
|
|
IFEQ HOST_OS openbsd ; {
|
|
|
|
USEROSTYPE = gnulinux ;
|
|
|
|
}{
|
|
|
|
IFEQ HOST_OS darwin ; {
|
|
|
|
USEROSTYPE = darwin ;
|
|
|
|
} } } } }
|
2010-02-21 20:24:28 +01:00
|
|
|
}
|
2009-04-03 11:11:17 +00:00
|
|
|
|
2010-01-21 21:22:30 +01:00
|
|
|
ARG_WITHOUT WITHPIC pic do not build libr as a program independent location ;
|
2010-10-29 03:10:10 +02:00
|
|
|
ARG_WITH WITHNONPIC nonpic build the library archives .a ;
|
2010-01-12 19:57:33 +01:00
|
|
|
|
2010-10-25 13:20:26 +02:00
|
|
|
REPORT PREFIX HAVE_LIB_EWF HAVE_LIB_GMP HAVE_LIB_SSL HAVE_LIB_TCC DEBUGGER USERCC USEROSTYPE ;
|
2009-03-31 00:57:39 +00:00
|
|
|
|
2009-07-16 00:30:20 +00:00
|
|
|
(( TODO: Add the rest of .pc files here.. add a rule for acr? ))
|
|
|
|
SUBDIRS ./config-user.mk libr/include/r_userconf.h
|
2009-07-16 09:40:00 +00:00
|
|
|
pkgcfg/r_io.pc
|
2009-07-16 00:30:20 +00:00
|
|
|
pkgcfg/r_asm.pc
|
|
|
|
pkgcfg/r_bin.pc
|
2010-01-25 11:54:25 +01:00
|
|
|
pkgcfg/r_anal.pc
|
|
|
|
pkgcfg/r_hash.pc
|
2009-07-16 09:40:00 +00:00
|
|
|
pkgcfg/r_cons.pc
|
|
|
|
pkgcfg/r_diff.pc
|
|
|
|
pkgcfg/r_core.pc
|
2009-09-20 01:03:57 +02:00
|
|
|
pkgcfg/r_lang.pc
|
2009-07-16 09:40:00 +00:00
|
|
|
pkgcfg/r_socket.pc
|
2009-09-20 00:28:06 +02:00
|
|
|
pkgcfg/r_debug.pc
|
|
|
|
pkgcfg/r_reg.pc
|
2010-01-25 11:54:25 +01:00
|
|
|
pkgcfg/r_cmd.pc
|
|
|
|
pkgcfg/r_config.pc
|
|
|
|
pkgcfg/r_flags.pc
|
2009-07-16 09:40:00 +00:00
|
|
|
pkgcfg/r_line.pc
|
|
|
|
pkgcfg/r_syscall.pc
|
2010-01-25 11:54:25 +01:00
|
|
|
pkgcfg/r_sign.pc
|
2009-07-16 00:30:20 +00:00
|
|
|
pkgcfg/r_util.pc
|
|
|
|
pkgcfg/r_search.pc
|
2009-07-21 22:59:34 +00:00
|
|
|
pkgcfg/r_th.pc
|
|
|
|
pkgcfg/r_bp.pc
|
|
|
|
pkgcfg/r_db.pc
|
2010-01-26 01:28:33 +01:00
|
|
|
pkgcfg/r_lib.pc
|
2010-10-28 02:51:01 +02:00
|
|
|
pkgcfg/r_parse.pc
|
|
|
|
pkgcfg/r_print.pc
|
2009-07-16 00:30:20 +00:00
|
|
|
;
|