mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-27 00:58:39 -04:00
19 lines
513 B
Makefile
19 lines
513 B
Makefile
DAEMON_OBJS=daemon.@O@
|
|
STRSEP_OBJS=strsep.@O@
|
|
|
|
OBJS= @DAEMON_OBJS@ @STRSEP_OBJS@ ftruncate.@O@ gettimeofday.@O@ \
|
|
mktemp.@O@ putenv.@O@ \
|
|
readv.@O@ setenv.@O@ setitimer.@O@ strcasecmp.@O@ strdup.@O@ \
|
|
strerror.@O@ strpbrk.@O@ strtoul.@O@ utimes.@O@ \
|
|
writev.@O@
|
|
|
|
SRCS= daemon.c ftruncate.c gettimeofday.c mktemp.c putenv.c \
|
|
readv.c setenv.c setitimer.c strcasecmp.c strdup.c \
|
|
strerror.c strpbrk.c strsep.c strtoul.c utimes.c \
|
|
writev.c
|
|
|
|
TARGETS= ${OBJS}
|
|
|
|
CINCLUDES= -I.. -I../include
|
|
|
|
@BIND9_MAKE_RULES@
|