07c67df8fd
components. This allows users of Qt to specify QTDIR=/path/to/qt instead of having to patch all configure scripts and makefiles to look for alternate names. This is the recommended approach from Troll Tech (Qt authors). update pkgs which use qt1 to reflect this.
26 lines
437 B
Text
26 lines
437 B
Text
# $NetBSD: Makefile.common,v 1.3 2000/03/28 00:09:23 dmcmahill Exp $
|
|
#
|
|
# Paths for Qt headers and library
|
|
#
|
|
|
|
QTDIR=$(X11BASE)/qt1
|
|
QTINC=$(QTDIR)/include
|
|
QTLIB=$(QTDIR)/lib
|
|
MOC=$(QTDIR)/bin/moc
|
|
|
|
#
|
|
# Paths for Qwt headers and library
|
|
# QWTDIR is set autometically
|
|
#
|
|
QWTINC = $(QWTDIR)/include
|
|
QWTLIB = $(QWTDIR)/lib
|
|
|
|
#
|
|
# Library Names
|
|
#
|
|
LIBSTATIC = libqwt.a
|
|
LIBSHARED = libqwt.so
|
|
LIBSHARED_0 = libqwt.so.0
|
|
LIBSHARED_1 = libqwt.so.0.2
|
|
|
|
|