diff --git a/Gemfile b/Gemfile index ff57b62..9ce12cd 100644 --- a/Gemfile +++ b/Gemfile @@ -2,5 +2,7 @@ source "https://rubygems.org" gem "rdebug" +#gem "qtbindings", "~> 4.8.3.0" gem "qtbindings" gem "thor" + diff --git a/Makefile b/Makefile index 5a27935..e1d8764 100644 --- a/Makefile +++ b/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)