mirror of
git://git.code.sf.net/p/dhcpd-pools/code
synced 2025-12-17 00:06:59 +00:00
src/sort.c:255:5: warning: no previous prototype for 'merge' src/sort.c:290:2: warning: ISO C90 forbids mixed declarations and code src/mustach-dhcpd-pools.c:67:5: warning: no previous prototype for 'must_put_err' src/output.c:109:26: warning: comparing floating point with == or != is unsafe (x5) Signed-off-by: Sami Kerola <kerolasa@iki.fi>
24 lines
542 B
Text
24 lines
542 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 $(MATH_LIBS)
|
|
|
|
dhcpd_pools_SOURCES = \
|
|
src/analyze.c \
|
|
src/dhcpd-pools.c \
|
|
src/dhcpd-pools.h \
|
|
src/getdata.c \
|
|
src/hash.c \
|
|
src/other.c \
|
|
src/output.c \
|
|
src/sort.c
|
|
|
|
if ENABLE_MUSTACH
|
|
dhcpd_pools_SOURCES += \
|
|
src/mustach-dhcpd-pools.c \
|
|
src/mustach.c \
|
|
src/mustach.h
|
|
endif
|