### -*-makefile-*- ### ### Build script for system utilities ### ### (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 = libsys.la libsys_la_SOURCES = ###-------------------------------------------------------------------------- ### Component files. ## Daemons. pkginclude_HEADERS += daemonize.h libsys_la_SOURCES += daemonize.c LIBMANS += daemonize.3 ## Environment variables. pkginclude_HEADERS += env.h libsys_la_SOURCES += env.c LIBMANS += env.3 ## File and descriptor flags. pkginclude_HEADERS += fdflags.h libsys_la_SOURCES += fdflags.c LIBMANS += fdflags.3 ## File descriptor passing. pkginclude_HEADERS += fdpass.h libsys_la_SOURCES += fdpass.c LIBMANS += fdpass.3 ## Watching files for modification. pkginclude_HEADERS += fwatch.h libsys_la_SOURCES += fwatch.c LIBMANS += fwatch.3 ## File locking. pkginclude_HEADERS += lock.h libsys_la_SOURCES += lock.c LIBMANS += lock.3 ## File descriptor juggling. pkginclude_HEADERS += mdup.h libsys_la_SOURCES += mdup.c LIBMANS += mdup.3 check_PROGRAMS += t/mdup.t t_mdup_t_SOURCES = t/mdup-test.c t_mdup_t_CPPFLAGS = $(TEST_CPPFLAGS) t_mdup_t_LDFLAGS = -static ## Time arithmetic. pkginclude_HEADERS += tv.h libsys_la_SOURCES += tv.c LIBMANS += tv.3 ###----- That's all, folks --------------------------------------------------