### -*-makefile-*- ### ### Build script for encoding and decoding ### ### (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 = libcodec.la libcodec_la_SOURCES = ###-------------------------------------------------------------------------- ### Component files. ## Codec base. pkginclude_HEADERS += codec.h libcodec_la_SOURCES += codec.c LIBMANS += codec.3 ## null libcodec_la_SOURCES += null-codec.c ## Simple binary base-conversion codecs. pkginclude_HEADERS += base64.h base32.h hex.h libcodec_la_SOURCES += baseconv.c LIBMANS += base64.3 ## form-urlencoded pkginclude_HEADERS += url.h libcodec_la_SOURCES += url.c LIBMANS += url.3 ## Test program. bin_PROGRAMS += bincode PROGMANS += bincode.1 bincode_SOURCES = bincode.c bincode_LDADD = libcodec.la bincode_LDADD += ../mem/libmem.la bincode_LDADD += ../struct/libstruct.la bincode_LDADD += $(UTIL_LIBS) ###----- That's all, folks --------------------------------------------------