### -*-makefile-*- ### ### Build script for YAID ### ### (c) 2012 Straylight/Edgeware ### ###----- Licensing notice --------------------------------------------------- ### ### This file is part of Yet Another Ident Daemon (YAID). ### ### YAID is free software; you can redistribute it and/or modify ### it under the terms of the GNU General Public License as published by ### the Free Software Foundation; either version 2 of the License, or ### (at your option) any later version. ### ### YAID 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 General Public License for more details. ### ### You should have received a copy of the GNU General Public License ### along with YAID; if not, write to the Free Software Foundation, ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. EXTRA_DIST = CLEANFILES = DISTCLEANFILES = MAINTAINERCLEANFILES = sbin_PROGRAMS = man_MANS = ###-------------------------------------------------------------------------- ### The main server. sbin_PROGRAMS += yaid yaid_SOURCES = EXTRA_yaid_SOURCES = yaid_LDADD = $(mLib_LIBS) yaid_SOURCES += yaid.h yaid_SOURCES += yaid.c yaid_SOURCES += addr.c yaid_SOURCES += policy.c yaid_LDADD += $(SYS).$(OBJEXT) EXTRA_yaid_SOURCES += linux.c ###-------------------------------------------------------------------------- ### Release machinery. dist-hook:: echo $(VERSION) >$(distdir)/RELEASE EXTRA_DIST += config/auto-version ###-------------------------------------------------------------------------- ### Debian. ## General stuff. ##EXTRA_DIST += debian/rules ##EXTRA_DIST += debian/control ##EXTRA_DIST += debian/changelog ##EXTRA_DIST += debian/copyright ###----- That's all, folks --------------------------------------------------