mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 08:50:22 -05:00
16 lines
352 B
Makefile
16 lines
352 B
Makefile
# Makefile for uuconv
|
|
# $Id: Makefile,v 1.3 1994/05/31 05:46:34 ache Exp $
|
|
|
|
BINDIR= $(sbindir)
|
|
|
|
PROG= uuconv
|
|
SRCS= uuconv.c
|
|
LDADD+= $(LIBUNIX) $(LIBUUCONF) $(LIBUUCP)
|
|
DPADD+= $(LIBUNIX) $(LIBUUCONF) $(LIBUUCP)
|
|
CFLAGS+= -I$(.CURDIR)/../common_sources\
|
|
-I$(.CURDIR)/../libuuconf\
|
|
-DVERSION=\"$(VERSION)\"
|
|
|
|
NOMAN= noman
|
|
|
|
.include <bsd.prog.mk>
|