Update Gemfile & Makefile.
This commit is contained in:
parent
30d8aead96
commit
6c45972cae
2 changed files with 7 additions and 3 deletions
2
Gemfile
2
Gemfile
|
@ -2,5 +2,7 @@
|
|||
source "https://rubygems.org"
|
||||
|
||||
gem "rdebug"
|
||||
#gem "qtbindings", "~> 4.8.3.0"
|
||||
gem "qtbindings"
|
||||
gem "thor"
|
||||
|
||||
|
|
8
Makefile
8
Makefile
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue