3 ### Build script for user interface
5 ### (c) 2009 Straylight/Edgeware
8 ###----- Licensing notice ---------------------------------------------------
10 ### This file is part of the mLib utilities library.
12 ### mLib is free software; you can redistribute it and/or modify
13 ### it under the terms of the GNU Library General Public License as
14 ### published by the Free Software Foundation; either version 2 of the
15 ### License, or (at your option) any later version.
17 ### mLib is distributed in the hope that it will be useful,
18 ### but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ### GNU Library General Public License for more details.
22 ### You should have received a copy of the GNU Library General Public
23 ### License along with mLib; if not, write to the Free
24 ### Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 ### MA 02111-1307, USA.
27 include $(top_srcdir)/vars.am
29 noinst_LTLIBRARIES = libui.la
33 ###--------------------------------------------------------------------------
37 noinst_LTLIBRARIES += libmdwopt.la
38 pkginclude_HEADERS += mdwopt.h
39 libmdwopt_la_SOURCES = mdwopt.c
40 libmdwopt_la_CPPFLAGS = $(AM_CPPFLAGS) -DBUILDING_MLIB
41 libui_la_LIBADD += libmdwopt.la
42 EXTRA_DIST += mdwopt.3.in
46 pkginclude_HEADERS += quis.h
47 libui_la_SOURCES += quis.c pquis.c
48 EXTRA_DIST += quis.3.in
52 pkginclude_HEADERS += report.h
53 libui_la_SOURCES += report.c
54 EXTRA_DIST += report.3.in
58 pkginclude_HEADERS += ttycolour.h
59 libui_la_SOURCES += ttycolour.c
60 ##EXTRA_DIST += ttycolour.3.in
61 ##LIBMANS += ttycolour.3
63 ###----- That's all, folks --------------------------------------------------