mirror of
git://git.code.sf.net/p/dhcpd-pools/code
synced 2025-12-18 00:37:01 +00:00
For reasons see excellent paper 'Recursive Make Considered Harmful' by Peter Miller. References: http://miller.emu.id.au/pmiller/books/rmch/ Signed-off-by: Sami Kerola <kerolasa@iki.fi>
18 lines
436 B
Text
18 lines
436 B
Text
## Makefile.am -- Process this file with automake to produce Makefile.in
|
|
|
|
bin_PROGRAMS = dhcpd-pools
|
|
AC_PROG_RANLIB = resolv
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/lib -I$(top_builddir)/lib
|
|
|
|
dhcpd_pools_LDADD = $(top_builddir)/lib/libdhcpd_pools.la
|
|
|
|
dhcpd_pools_SOURCES = \
|
|
src/analyze.c \
|
|
src/defaults.h \
|
|
src/dhcpd-pools.c \
|
|
src/dhcpd-pools.h \
|
|
src/getdata.c \
|
|
src/hash.c \
|
|
src/other.c \
|
|
src/output.c \
|
|
src/sort.c
|