30 lines
865 B
Makefile
30 lines
865 B
Makefile
LIBUNIX!=cd $(.CURDIR)/../libunix; \
|
|
printf "xxx:\n\techo \$${.OBJDIR}/libunix.a\n" | ${MAKE} -r -s -f - xxx
|
|
|
|
LIBUUCONF!=cd $(.CURDIR)/../libuuconf; \
|
|
printf "xxx:\n\techo \$${.OBJDIR}/libuuconf.a\n" | ${MAKE} -r -s -f - xxx
|
|
|
|
LIBUUCP!=cd $(.CURDIR)/../libuucp; \
|
|
printf "xxx:\n\techo \$${.OBJDIR}/libuucp.a\n" | ${MAKE} -r -s -f - xxx
|
|
|
|
VERSION= 1.04
|
|
owner= uucp
|
|
bindir= /usr/bin
|
|
sbindir= /usr/libexec/uucp
|
|
|
|
# The directory to look in for new style configuration files (when
|
|
# using HAVE_TAYLOR_CONFIG).
|
|
newconfigdir= /etc/uucp
|
|
|
|
# The directory to look in for BNU (when using HAVE_BNU_CONFIG) or
|
|
# V2 (when using HAVE_V2_CONFIG) style configuration files.
|
|
oldconfigdir= /etc/uucp
|
|
|
|
# this is sick, but much easier than putting in the individual programs'
|
|
# makefiles.
|
|
.if defined(PROG)
|
|
# use gnu malloc
|
|
LDADD+= -lgnumalloc
|
|
DPADD+= /usr/lib/libgnumalloc.a
|
|
.endif
|