- rename 'make ins' to 'make symstall'
  - more build fixes
  - all libs must be compiled before r_debug & r_core
  - Remove r_cons & r_print dependencies from asm/t/Makefile
  - Add r_anal dependency to debug/t/Makefile
This commit is contained in:
Nibble 2010-05-25 20:40:47 +02:00
parent a972644aba
commit 5cf81db968
4 changed files with 5 additions and 5 deletions

View File

@ -39,7 +39,7 @@ install: install-man
cd libr && ${MAKE} install PARENT=1 PREFIX=${PREFIX} DESTDIR=${DESTDIR}
cd r2rc && ${MAKE} install PREFIX=${PREFIX} DESTDIR=${DESTDIR}
ins install-symlink:
symstall install-symlink:
cd libr && ${MAKE} install-symlink PREFIX=${PREFIX} DESTDIR=${DESTDIR}
uninstall:
@ -71,4 +71,4 @@ shot:
include ${MKPLUGINS}
.PHONY: all clean mrproper install uninstall deinstall dist shot pkgcfg vdoc swig libr r2rc install-man
.PHONY: all clean mrproper install symstall uninstall deinstall dist shot pkgcfg vdoc swig libr r2rc install-man

View File

@ -7,7 +7,7 @@ PFX=${DESTDIR}${PREFIX}
# Libraries
LIBLIST=util line cons line lib io meta lang flags bin hash config syscall socket
LIBLIST+=cmd asm anal print parse search diff bp reg debug core sign vm th db
LIBLIST+=cmd asm anal print parse search diff bp reg sign vm th db debug core
# Under development
#LIBLIST+=print

View File

@ -2,7 +2,7 @@ include ../../config.mk
OBJ=rasm2.o
BIN=rasm2${EXT_EXE}
BINDEPS=r_lib r_asm r_print r_cons r_util
BINDEPS=r_lib r_asm r_util
LIBS+=-ldl
LDPATH=-L.. -L../../util -L../../lib

View File

@ -2,7 +2,7 @@ include ../../config.mk
OBJ=main.o
BIN=main
BINDEPS=r_lib r_debug r_bp r_io r_reg r_cons r_util
BINDEPS=r_lib r_debug r_bp r_io r_reg r_cons r_util r_anal
LIBS+=${DL_LIBS}
include ../../rules.mk