You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
287 B
14 lines
287 B
14 years ago
|
QT=$(shell ls -1 | sed -n 's/\(qt-.*\)\.tar\.gz/\1/p')
|
||
|
|
||
|
all: ${QT}
|
||
|
cd $< && (echo "yes" | ./configure -opensource)
|
||
|
cd $< && make
|
||
|
|
||
|
maintainer-clean: clean
|
||
|
-rm -rf ${QT}
|
||
|
|
||
|
${QT}: ${QT}.tar.gz
|
||
|
tar xzvf $<
|
||
|
cd $@ && patch -p1 < ../patch/qt-sources-patch.diff
|
||
|
|
||
|
.PHONY: maintainer-clean all
|