openbsd-ports/x11/qwt/files/Makefile.examples
merdely b417d0254a The Qwt library contains GUI Components and utility classes which
are primarily useful for programs with a technical background. Beside
a 2D plot widget it provides scales, sliders, dials, compasses,
thermometers, wheels and knobs to control or display values, arrays,
or ranges of type double.

help and okay steven@
2007-09-14 01:19:24 +00:00

21 lines
406 B
Makefile

# $OpenBSD: Makefile.examples,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $
EXAMPLES= !!EXAMPLES!!
all:
@for I in ${EXAMPLES}; \
do (cd $$I; echo "==> Building for $$I"; \
qmake4 $$I.pro && gmake; \
echo "";); \
done
clean:
@for I in ${EXAMPLES}; \
do (cd $$I; echo "==> Cleaning for $$I"; \
gmake distclean; \
rm -Rf obj; \
rm -Rf moc; \
echo "";); \
done