diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..2e46050 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,29 @@ +# +# force-ip-protocol +# Copyright (C) 2023 Thorsten Alteholz +# +# 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, version 2 of the License. +# +# 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. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + +ACLOCAL_AMFLAGS = -I m4 + +lib_LTLIBRARIES=libforce-ip-protocol-ipv4.la libforce-ip-protocol-ipv6.la + +libforce_ip_protocol_ipv6_la_SOURCES=force-ip-protocol-ipv4-or-ipv6.c +libforce_ip_protocol_ipv6_la_CFLAGS=-fPIC -DUSE_IPV6 +libforce_ip_protocol_ipv6_la_LDFLAGS= -shared -fPIC + +libforce_ip_protocol_ipv4_la_SOURCES=force-ip-protocol-ipv4-or-ipv6.c +libforce_ip_protocol_ipv4_la_CFLAGS=-fPIC -DUSE_IPV4 +libforce_ip_protocol_ipv4_la_LDFLAGS= -shared -fPIC + |