forked from Lainports/freebsd-ports
instructions from a binary stream. The intent is to provide an easy to use disassembler which can be called from any application; the disassembly can be produced in AT&T syntax and Intel syntax, as well as in an intermediate format which includes detailed instruction and operand type information. WWW: http://bastard.sourceforge.net/libdisasm.html PR: ports/108067 Submitted by: Lutz Boehne <lboehne at damogran.de>
33 lines
953 B
Text
33 lines
953 B
Text
--- Makefile.old Sat Apr 29 02:16:24 2006
|
|
+++ Makefile Thu Jan 18 01:01:08 2007
|
|
@@ -48,7 +48,7 @@
|
|
# ============================================================================
|
|
# TARGETS
|
|
|
|
-all: $(LIBDIS) $(X86DIS) $(TESTDIS) swig-modules
|
|
+all: $(LIBDIS)
|
|
dummy: x86dis libdisasm test dist swig-modules install clean
|
|
|
|
# ------------------------------------------------------- LIBDIS
|
|
@@ -86,15 +86,15 @@
|
|
cd swig && make clean
|
|
|
|
# ------------------------------------------------------- INSTALL
|
|
-install: $(LIBDIS) $(X86DIS)
|
|
+install: $(LIBDIS)
|
|
#swig-install
|
|
# install bindistrib files to INSTALL_LOC
|
|
cd libdisasm && make install
|
|
- cd x86dis && make install
|
|
- cd man && make install
|
|
- cd doc && make install
|
|
- cd perl && make install
|
|
- cd swig && make install
|
|
+ #cd x86dis && make install
|
|
+ #cd man && make install
|
|
+ #cd doc && make install
|
|
+ #cd perl && make install
|
|
+ #cd swig && make install
|
|
|
|
uninstall:
|
|
cd libdisasm && make uninstall
|