X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/dd3c57bc8cac59e0d657ee665ce462988d27d714..18c831dcd0ae4d660c70ccac69d27ed2a97851be:/ui/Makefile.am diff --git a/ui/Makefile.am b/ui/Makefile.am new file mode 100644 index 0000000..ab70a70 --- /dev/null +++ b/ui/Makefile.am @@ -0,0 +1,54 @@ +### -*-makefile-*- +### +### Build script for user interface +### +### (c) 2009 Straylight/Edgeware +### + +###----- Licensing notice --------------------------------------------------- +### +### This file is part of the mLib utilities library. +### +### mLib is free software; you can redistribute it and/or modify +### it under the terms of the GNU Library General Public License as +### published by the Free Software Foundation; either version 2 of the +### License, or (at your option) any later version. +### +### mLib is distributed in the hope that it will be useful, +### but WITHOUT ANY WARRANTY; without even the implied warranty of +### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +### GNU Library General Public License for more details. +### +### You should have received a copy of the GNU Library General Public +### License along with mLib; if not, write to the Free +### Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, +### MA 02111-1307, USA. + +include $(top_srcdir)/vars.am + +noinst_LTLIBRARIES = libui.la +libui_la_SOURCES = +libui_la_LIBADD = + +###-------------------------------------------------------------------------- +### Component files. + +## Option parsing. +noinst_LTLIBRARIES += libmdwopt.la +pkginclude_HEADERS += mdwopt.h +libmdwopt_la_SOURCES = mdwopt.c +libmdwopt_la_CPPFLAGS = $(AM_CPPFLAGS) -DBUILDING_MLIB +libui_la_LIBADD += libmdwopt.la +LIBMANS += mdwopt.3 + +## Program naming. +pkginclude_HEADERS += quis.h +libui_la_SOURCES += quis.c pquis.c +LIBMANS += quis.3 + +## Error reporting. +pkginclude_HEADERS += report.h +libui_la_SOURCES += report.c +LIBMANS += report.3 + +###----- That's all, folks --------------------------------------------------