]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.sbin/ac/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / usr.sbin / ac / Makefile
1 # $FreeBSD$
2
3 PROG=   ac
4 MAN=    ac.8
5
6 WARNS?= 4
7
8 # Temporary, while tracking down problem wrt 64-bit time_t's on sparc64
9 .if ${MACHINE_ARCH} == "sparc64"
10 CFLAGS+=-DDEBUG
11 .endif
12
13 # If "CONSOLE_TTY" is not defined, this program is compatible with the
14 # traditional implementation (using SunOS 4.x as the sample traditional
15 # implementation).  This is the default.
16 #
17 # If "CONSOLE_TTY" is defined, it must be defined to the appropriate
18 # console name, e.g. "vga".  Additionally, the various commented-out
19 # sections of the man page should be uncommented.  This is not the
20 # default because of the inability to detect the proper console name
21 # easily, especially on m68k systems, which can share binaries.
22 #
23 #CFLAGS+=-DCONSOLE_TTY=\"vga\"
24
25 .include <bsd.prog.mk>