# tag: Makefile for OpenBIOS QT plugin
#
# Copyright (C) 2003 Stefan Reinauer
#
# See the file "COPYING" for further information about
# the copyright and warranty status of this work.
#

PLUGINDIR  =  $(TOPDIR)/plugins
QMAKE      =  qmake

export PLUGINDIR

all: plugin_qt.so

plugin_qt.so: makefile.qmake
	@$(MAKE) -f $(BUILDDIR)/makefile.qmake

makefile.qmake:
	@$(QMAKE) -o $(BUILDDIR)/makefile.qmake

clean: makefile.qmake
	@$(MAKE) -s -f makefile.qmake clean
	@rm -f makefile.qmake plugin_qt.so
