Home | History | Annotate | Line # | Download | only in libcurses
Makefile revision 1.32
      1  1.32     blymn #	$NetBSD: Makefile,v 1.32 2001/01/10 14:02:31 blymn Exp $
      2   1.9       cgd #	@(#)Makefile	8.2 (Berkeley) 1/2/94
      3   1.1       cgd 
      4  1.18     lukem CPPFLAGS+=#-DTFILE=\"/dev/ttyp0\"
      5  1.29     blymn CPPFLAGS+=-D_CURSES_PRIVATE -I${.CURDIR} -I${.CURDIR}/../libterm
      6  1.32     blymn .if defined(DEBUG_CURSES)
      7  1.32     blymn CFLAGS+=-g
      8  1.32     blymn CPPFLAGS+=-DDEBUG
      9  1.32     blymn .endif
     10   1.1       cgd LIB=	curses
     11  1.31    simonb SRCS=	acs.c addbytes.c addch.c addnstr.c attributes.c background.c bell.c \
     12  1.23       jdc 	border.c box.c clear.c clearok.c clrtobot.c clrtoeol.c color.c \
     13  1.31    simonb 	copywin.c cr_put.c ctrace.c cur_hash.c curs_set.c curses.c delch.c \
     14  1.31    simonb 	deleteln.c delwin.c erase.c flushok.c fullname.c getch.c getstr.c \
     15  1.31    simonb 	getyx.c id_subwins.c idlok.c inch.c inchstr.c initscr.c insch.c \
     16  1.31    simonb 	insdelln.c insertln.c instr.c keypad.c leaveok.c line.c longname.c \
     17  1.31    simonb 	meta.c move.c mvwin.c newwin.c nodelay.c notimeout.c overlay.c \
     18  1.31    simonb 	overwrite.c pause.c printw.c putchar.c refresh.c scanw.c scroll.c \
     19  1.31    simonb 	scrollok.c setterm.c standout.c timeout.c toucholap.c touchwin.c \
     20  1.31    simonb 	tscroll.c tstp.c tty.c unctrl.c underscore.c
     21  1.31    simonb 
     22  1.10       cgd MAN=	curses.3
     23  1.25    kleink INCS=	curses.h unctrl.h
     24  1.13  christos INCSDIR=/usr/include
     25  1.19       jtc 
     26  1.19       jtc CPPFLAGS+=-DCM_N -DCM_GT -DCM_B -DCM_D
     27  1.31    simonb SRCS+=	termcap.c tgoto.c tputs.c
     28  1.19       jtc .PATH: ${.CURDIR}/../libterm
     29   1.7       cgd 
     30   1.8       cgd .if make(install)
     31  1.20       mrg SUBDIR+= PSD.doc
     32   1.7       cgd .endif
     33   1.1       cgd 
     34   1.1       cgd .include <bsd.lib.mk>
     35  1.17   mycroft .include <bsd.subdir.mk>
     36