| Fix build dependencies - warvox - VoIP based wardialing tool, forked from rapid… | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| commit 94e9d75611114ada01cb5df237e17250beda085b | |
| parent 8a68de56c1e1c92ffce4a618532725807cfb62eb | |
| Author: HD Moore <[email protected]> | |
| Date: Sun, 1 Mar 2009 22:06:27 +0000 | |
| Fix build dependencies | |
| Diffstat: | |
| M Makefile | 4 +++- | |
| 1 file changed, 3 insertions(+), 1 deletion(-) | |
| --- | |
| diff --git a/Makefile b/Makefile | |
| @@ -2,6 +2,8 @@ all: install | |
| install: iaxrecord ruby-kissfft db | |
| cp -a src/iaxrecord/iaxrecord bin/ | |
| + | |
| +ruby-kissfft-install: ruby-kissfft | |
| cp -a src/ruby-kissfft/kissfft.so lib/ | |
| iaxrecord: | |
| @@ -17,7 +19,7 @@ db: db_null web/db/production.sqlite3 | |
| db_null: | |
| find web/db/ -name 'production.sqlite3' -size 0 | xargs -i rm {} | |
| -web/db/production.sqlite3: ruby-kissfft | |
| +web/db/production.sqlite3: ruby-kissfft-install | |
| (cd web; RAILS_ENV=production rake db:migrate ) | |
| clean: |