### -*-makefile-*- ### ### Build script for udpkey ### ### (c) 2012 Mark Wooding ### ###----- Licensing notice --------------------------------------------------- ### ### This file is part of udpkey. ### ### The udpkey program 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. ### ### The udpkey program 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 udpkey; if not, write to the Free Software Foundation, ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. bin_PROGRAMS = dist_man_MANS = EXTRA_DIST = ###-------------------------------------------------------------------------- ### Main program. bin_PROGRAMS += udpkey dist_man_MANS += udpkey.1 udpkey_SOURCES = udpkey.c udpkey_LDADD = $(mLib_LIBS) $(catacomb_LIBS) ###-------------------------------------------------------------------------- ### Release tweaking. dist-hook:: echo $(VERSION) >$(distdir)/RELEASE EXTRA_DIST += config/auto-version ###-------------------------------------------------------------------------- ### Debian. EXTRA_DIST += debian/control debian/rules EXTRA_DIST += debian/copyright debian/changelog EXTRA_DIST += debian/compat debian/source/format EXTRA_DIST += debian/README.Debian EXTRA_DIST += debian/udpkey.examples EXTRA_DIST += debian/udpkey.init EXTRA_DIST += debian/udpkey.initramfs-hook EXTRA_DIST += debian/udpkey.keyscript ###----- That's all, folks --------------------------------------------------