Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Unified Diff: src/third_party/libdisasm/swig/Makefile

Issue 1821293002: Replace libdisasm with capstone Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/third_party/libdisasm/swig/Makefile
diff --git a/src/third_party/libdisasm/swig/Makefile b/src/third_party/libdisasm/swig/Makefile
deleted file mode 100644
index 44ef486b6a43fe3129510f70585ce7cc6d95eb81..0000000000000000000000000000000000000000
--- a/src/third_party/libdisasm/swig/Makefile
+++ /dev/null
@@ -1,70 +0,0 @@
-# change these values if you need to
-SWIG = swig # apt-get install swig !
-GCC = gcc
-
-CC_FLAGS = -c -fPIC
-LD_FLAGS = -shared -L../.. -ldisasm
-
-BASE_NAME = x86disasm
-
-export INTERFACE_FILE BASE_NAME SWIG GCC CC_FLAGS LD_FLAGS
-
-#====================================================
-# TARGETS
-
-all: swig
-dummy: swig swig-python swig-ruby swig-perl swig-tcl install uninstall clean
-
-swig: swig-python swig-perl
-# swig-rub swig-tcl
-
-swig-python:
- cd python && make -f Makefile-swig
-
-swig-ruby:
- cd ruby && make -f Makefile-swig
-
-swig-perl:
- cd perl && make -f Makefile-swig
-
-swig-tcl:
- cd tcl && make -f Makefile-swig
-
-# ==================================================================
-install: install-python install-perl
-# install-ruby install-tcl
-
-install-python:
- cd python && sudo make -f Makefile-swig install
-
-install-ruby:
- cd ruby && sudo make -f Makefile-swig install
-
-install-perl:
- cd perl && sudo make -f Makefile-swig install
-
-install-tcl:
- cd tcl && sudo make -f Makefile-swig install
-
-# ==================================================================
-uninstall: uninstall-python
-#uninstall-ruby uninstall-perl uninstall-tcl
-
-uninstall-python:
- cd python && sudo make -f Makefile-swig uninstall
-
-uninstall-ruby:
- cd ruby && sudo make -f Makefile-swig uninstall
-
-uninstall-perl:
- cd perl && sudo make -f Makefile-swig uninstall
-
-uninstall-tcl:
- cd tcl && sudo make -f Makefile-swig uninstall
-
-# ==================================================================
-clean:
- cd python && make -f Makefile-swig clean
- cd ruby && make -f Makefile-swig clean
- cd perl && make -f Makefile-swig clean
- cd tcl && make -f Makefile-swig clean

Powered by Google App Engine
This is Rietveld 408576698