Changeset 8925
- Timestamp:
- 07/17/08 14:39:39
- Files:
-
- grc/trunk/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
grc/trunk/Makefile
r8772 r8925 22 22 DOCS_URL = http://www.ece.jhu.edu/~jblum/downloads/grc_gnuradio_docs.tar.gz 23 23 DOCS_DEST = /usr/local/share/doc/ 24 PREFIX = /usr/local 24 25 25 26 all: 26 @echo Options: build, clean,install, uninstall, docs_install, docs_uninstall27 @echo Options: install, uninstall, docs_install, docs_uninstall 27 28 28 build: clean 29 python setup.py build 30 31 clean: 32 if [ -d build ]; then rm -rf build; fi 33 34 install: build 35 python setup.py install 29 install: 30 python setup.py install --prefix=$(PREFIX) 31 rm -rf build 36 32 37 33 uninstall: 38 rm -rf `python -c "import grc,os;print os.path.dirname(grc.__file__)"`* 34 rm -rf `python -c "import grc,os;print os.path.dirname(grc.__file__)"` 35 rm -rf `python -c "import grc_gnuradio,os;print os.path.dirname(grc_gnuradio.__file__)"` 36 rm -rf `which grc` `which usrp_diagnostics` 39 37 40 38 docs_install:
