forked from radareorg/radare2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
480 additions
and
3,361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
exe rabin2 : rabin2.c : | ||
<define>LIBDIR="" | ||
<library>../../libr/core | ||
<library>../../libr/util | ||
<library>../../libr/anal | ||
<library>../../libr/asm | ||
<library>../../libr/syscall | ||
<library>../../libr/search | ||
<library>../../libr/cmd | ||
<library>../../libr/io | ||
<library>../../libr/asm | ||
<library>../../libr/bin | ||
<library>../../libr/flags | ||
<library>../../libr/lib | ||
<library>../../libr/db | ||
<library>../../libr/cons | ||
<library>../../libr/parse | ||
<library>../../libr/fs | ||
<library>../../libr/config | ||
<library>../../libr/diff | ||
<library>../../libr/magic | ||
<library>../../libr/debug | ||
<library>../../libr/bp | ||
<library>../../libr/reg | ||
<library>../../libr/hash | ||
<library>../../libr/crypto | ||
<library>../../libr/egg | ||
<include>../../libr/include ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
exe radare2 : radare2.c : | ||
<library>../../libr/core | ||
<library>../../libr/util | ||
<library>../../libr/anal | ||
<library>../../libr/asm | ||
<library>../../libr/syscall | ||
<library>../../libr/search | ||
<library>../../libr/cmd | ||
<library>../../libr/io | ||
<library>../../libr/asm | ||
<library>../../libr/bin | ||
<library>../../libr/flags | ||
<library>../../libr/lib | ||
<library>../../libr/db | ||
<library>../../libr/cons | ||
<library>../../libr/parse | ||
<library>../../libr/fs | ||
<library>../../libr/config | ||
<library>../../libr/diff | ||
<library>../../libr/magic | ||
<library>../../libr/debug | ||
<library>../../libr/bp | ||
<library>../../libr/reg | ||
<library>../../libr/hash | ||
<library>../../libr/crypto | ||
<library>../../libr/egg | ||
<include>../../libr/include ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
exe rasm2 : rasm2.c : | ||
<library>../../libr/asm | ||
<library>../../libr/parse | ||
<library>../../libr/lib | ||
<library>../../libr/syscall | ||
<library>../../libr/anal | ||
<library>../../libr/reg | ||
<library>../../libr/diff | ||
<library>../../libr/db | ||
<library>../../libr/flags | ||
<library>../../libr/util | ||
<library>../../libr/cons | ||
<include>../../libr/include ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
OBJS = asm.c code.c ; | ||
ASM_OBJS = asm.c code.c ; | ||
|
||
lib r_asm : $(OBJS) : <include>../include <library>../util | ||
include plugins.jam ; | ||
|
||
lib r_asm : $(ASM_OBJS) : | ||
<define>CORELIB | ||
<include>../include | ||
<library>../util | ||
<library>../lib | ||
<library>../parse | ||
<library>../syscall | ||
<library>../db | ||
$(ASM_EXTRA) | ||
; |
Oops, something went wrong.