X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=Makefile.defines.in;fp=Makefile.defines.in;h=fc280466215b78537d1abcabd4412aa662f6f18c;hb=4dce60bf36bb0f2533d1c750d6ca96078f335aa3;hp=0000000000000000000000000000000000000000;hpb=14c2c4a4749270c317120ca3d255f1cde054085f;p=crypto.git diff --git a/Makefile.defines.in b/Makefile.defines.in new file mode 100644 index 00000000..fc280466 --- /dev/null +++ b/Makefile.defines.in @@ -0,0 +1,67 @@ +# +# Makefile.defines.in +# +# Author: Pekka Riikonen +# +# Copyright (C) 2000 - 2001 Pekka Riikonen +# +# This 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. +# +# This 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. +# + +# +# This file is intended to include all common compilation defines for the +# SILC source tree. All Makefile.ams in the SILC source tree are expected +# to include this file (Makefile.defines). Also all external packages +# that are included in the SILC source tree and that needs the SILC +# specific complation defines must include this file. +# +# Add following to your Makefile.am: +# +# include $(top_srcdir)/Makefile.defines +# + +# +# Generic definitions +# +silc_top_srcdir = @SILC_TOP_SRCDIR@ + +# +# Common libraries that are linked against the created executable +# +SILC_COMMON_LIBS = @LIBS@ -L$(silc_top_srcdir)/lib -lsilc + +# +# Installation defines +# +silc_etcdir = @ETCDIR@ +silc_modulesdir = $(prefix)/@MODULESDIR@ +silc_helpdir = $(prefix)/@HELPDIR@ +silc_docdir = $(prefix)/@DOCDIR@ +silc_logsdir = $(prefix)/@LOGSDIR@ + +# +# INCLUDE defines +# +INCLUDES = $(ADD_INCLUDES) \ + -I$(srcdir) -I$(top_srcdir) \ + -I$(silc_top_srcdir) \ + -I$(silc_top_srcdir)/lib/silccore \ + -I$(silc_top_srcdir)/lib/silccrypt \ + -I$(silc_top_srcdir)/lib/silcmath \ + -I$(silc_top_srcdir)/lib/silcmath/gmp \ + -I$(silc_top_srcdir)/lib/silcske \ + -I$(silc_top_srcdir)/lib/silcsim \ + -I$(silc_top_srcdir)/lib/silcutil \ + -I$(silc_top_srcdir)/lib/silcclient \ + -I$(silc_top_srcdir)/lib/contrib \ + -I$(silc_top_srcdir)/includes \ + -I$(silc_top_srcdir)/doc \ + -I$(silc_top_srcdir)/lib/trq