Update Gemfile & Makefile.

This commit is contained in:
Glenn Y. Rolland 2014-04-04 00:36:18 +02:00
parent 30d8aead96
commit 6c45972cae
2 changed files with 7 additions and 3 deletions

View file

@ -2,5 +2,7 @@
source "https://rubygems.org"
gem "rdebug"
#gem "qtbindings", "~> 4.8.3.0"
gem "qtbindings"
gem "thor"

View file

@ -1,5 +1,7 @@
NAME=qasim
DESTDIR=/usr/local
DEV_DESTDIR=tmp
CONFDIR=$(DESTDIR)/etc
BINDIR=$(DESTDIR)/usr/bin
MANDIR=$(DESTDIR)/usr/share/man
@ -166,8 +168,8 @@ install-data:
## OTHER
.PHONY: tmp/destdir
.PHONY: destdir
dev-install:
rm -fr tmp/destdir
fakeroot $(MAKE) install DESTDIR=tmp/destdir
rm -fr $(DEV_DESTDIR)
fakeroot $(MAKE) install DESTDIR=$(DEV_DESTDIR)