Makefile (9199c09a159c4e3e98c212d4eec1edc5252d9e33) | Makefile (ff9c3a3239989ca097796ef075e657994e6688b2) |
---|---|
1# $FreeBSD$ | 1# $Id: Makefile,v 1.1.1.1 1994/05/18 08:00:44 csgr Exp $ |
2 3PROG= ac | 2 3PROG= ac |
4MAN= ac.8 | 4MAN8= ac.8 |
5 | 5 |
6# Temporary, while tracking down problem wrt 64-bit time_t's on sparc64 7.if ${MACHINE_ARCH} == "sparc64" 8CFLAGS+=-DDEBUG 9.endif 10 | |
11# If "CONSOLE_TTY" is not defined, this program is compatible with the 12# traditional implementation (using SunOS 4.x as the sample traditional 13# implementation). This is the default. 14# 15# If "CONSOLE_TTY" is defined, it must be defined to the appropriate 16# console name, e.g. "vga". Additionally, the various commented-out 17# sections of the man page should be uncommented. This is not the 18# default because of the inability to detect the proper console name 19# easily, especially on m68k systems, which can share binaries. 20# 21#CFLAGS+=-DCONSOLE_TTY=\"vga\" 22 23.include <bsd.prog.mk> | 6# If "CONSOLE_TTY" is not defined, this program is compatible with the 7# traditional implementation (using SunOS 4.x as the sample traditional 8# implementation). This is the default. 9# 10# If "CONSOLE_TTY" is defined, it must be defined to the appropriate 11# console name, e.g. "vga". Additionally, the various commented-out 12# sections of the man page should be uncommented. This is not the 13# default because of the inability to detect the proper console name 14# easily, especially on m68k systems, which can share binaries. 15# 16#CFLAGS+=-DCONSOLE_TTY=\"vga\" 17 18.include <bsd.prog.mk> |