build utilities in source subdirectories and add ipxripd

This commit is contained in:
Mario Fetka
2026-04-29 21:41:54 +02:00
parent a97961011c
commit b148b4b60c
7 changed files with 214 additions and 158 deletions

44
src/Makefile.am Normal file
View File

@@ -0,0 +1,44 @@
AM_CPPFLAGS = -I$(top_srcdir)
AM_CFLAGS = -Wall -Wextra
sbin_PROGRAMS = \
ipx_configure \
ipx_interface \
ipx_internal_net \
ipx_route \
ipx_cmd
ipx_configure_SOURCES = \
nls.h \
ipx_configure.c
ipx_interface_SOURCES = \
nls.h \
ipxutil.h \
ipxutil.c \
ipx_interface.c
ipx_internal_net_SOURCES = \
nls.h \
ipxutil.h \
ipxutil.c \
ipx_internal_net.c
ipx_route_SOURCES = \
nls.h \
ipxutil.h \
ipxutil.c \
ipx_route.c
ipx_cmd_SOURCES = \
nls.h \
netlink.h \
ipx_compat.h \
ipx_cmd.c
man8_MANS = \
$(top_srcdir)/docs/ipx_configure.8 \
$(top_srcdir)/docs/ipx_interface.8 \
$(top_srcdir)/docs/ipx_internal_net.8 \
$(top_srcdir)/docs/ipx_route.8 \
$(top_srcdir)/docs/ipx_cmd.8