From 92612cb68aab406b79db68f64842cdb57d0e8ce7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Thu, 27 Jan 2011 10:40:46 +0000 Subject: [PATCH] build 32bit QT; refs #22 --- qt/makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qt/makefile b/qt/makefile index b6a1dc9..91c1859 100644 --- a/qt/makefile +++ b/qt/makefile @@ -1,11 +1,11 @@ QT=$(shell ls -1 | sed -n 's/\(qt-.*\)\.tar\.gz/\1/p') -all: build +all: build-lin32 build maintainer-clean: clean -rm -rf ${QT} ${QT}-lin32 -install: +install: install-lin32 cd ${QT} && make install ${QT}: ${QT}.tar.gz @@ -26,4 +26,4 @@ build-lin32: ${QT}-lin32 cd $< && (echo "yes" | ./configure -opensource -platform linux-g++-32 -prefix=/usr/local/trolltech/qt-32bit) cd $< && make -.PHONY: maintainer-clean all build install \ No newline at end of file +.PHONY: maintainer-clean all build install build-lin32 install-lin32