make tags for header file too
[unix-history] / usr / src / lib / libcurses / Makefile
CommitLineData
d96910a1 1#
b500698c 2# Copyright (c) 1987 Regents of the University of California.
2556ef20 3# All rights reserved.
d96910a1 4#
2556ef20 5# Redistribution and use in source and binary forms are permitted
a399f6c8
KB
6# provided that the above copyright notice and this paragraph are
7# duplicated in all such forms and that any documentation,
8# advertising materials, and other materials related to such
9# distribution and use acknowledge that the software was developed
10# by the University of California, Berkeley. The name of the
11# University may not be used to endorse or promote products derived
12# from this software without specific prior written permission.
13# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
2556ef20 16#
fff5f09a 17# @(#)Makefile 5.8 (Berkeley) %G%
71004f8d 18#
b500698c
GM
19CFLAGS= -O
20LIBC= /lib/libc.a
21SRCS= addbytes.c addch.c addstr.c box.c clear.c clrtobot.c clrtoeol.c \
22 cr_put.c cr_tty.c curses.c delch.c deleteln.c delwin.c endwin.c \
23 erase.c fullname.c getch.c getstr.c idlok.c id_subwins.c initscr.c \
24 insch.c insertln.c longname.c move.c mvprintw.c mvscanw.c mvwin.c \
25 newwin.c overlay.c overwrite.c printw.c putchar.c refresh.c scanw.c \
26 scroll.c toucholap.c standout.c touchwin.c tstp.c unctrl.c
27OBJS= addbytes.o addch.o addstr.o box.o clear.o clrtobot.o clrtoeol.o \
28 cr_put.o cr_tty.o curses.o delch.o deleteln.o delwin.o endwin.o \
29 erase.o fullname.o getch.o getstr.o idlok.o id_subwins.o initscr.o \
30 insch.o insertln.o longname.o move.o mvprintw.o mvscanw.o mvwin.o \
31 newwin.o overlay.o overwrite.o printw.o putchar.o refresh.o scanw.o \
32 scroll.o toucholap.o standout.o touchwin.o tstp.o unctrl.o
01373d4a 33MAN= curses.0
e378ba16
BJ
34
35.c.o:
2556ef20
KB
36 @${CC} -c -pg ${CFLAGS} $*.c
37 @ld -x -o profiled/$*.o -r $*.o
38 ${CC} ${CFLAGS} -c $*.c
39 @ld -x -r $*.o
40 @mv a.out $*.o
e378ba16 41
dc260e6e 42all: libcurses.a libcurses_p.a
b500698c 43
dc260e6e 44libcurses.a libcurses_p.a: ${OBJS}
e378ba16 45 @echo building normal libcurses
dc260e6e
KB
46 @ar cu libcurses.a ${OBJS}
47 ranlib libcurses.a
48 @echo building profiled libcurses
49 @cd profiled; ar cu ../libcurses_p.a ${OBJS}
50 ranlib libcurses_p.a
e378ba16 51
da8ac19e 52clean:
dc260e6e 53 rm -f ${OBJS} profiled/*.o libcurses.a libcurses_p.a
b500698c 54
da8ac19e
KB
55cleandir: clean
56 rm -f ${MAN} tags .depend
57
58depend: ${SRCS}
b500698c
GM
59 mkdep ${CFLAGS} ${SRCS}
60
01373d4a
KB
61install: ${MAN}
62 install -c -o bin -g bin -m 444 ${MAN} ${DESTDIR}/usr/man/cat3
dc260e6e
KB
63 install -o bin -g bin -m 644 libcurses.a ${DESTDIR}/usr/lib
64 ranlib -t ${DESTDIR}/usr/lib/libcurses.a
65 install -o bin -g bin -m 644 libcurses_p.a ${DESTDIR}/usr/lib
66 ranlib -t ${DESTDIR}/usr/lib/libcurses_p.a
71004f8d 67
da8ac19e 68lint: ${SRCS}
b500698c 69 lint ${CFLAGS} ${SRCS}
71004f8d 70
da8ac19e 71tags: ${SRCS}
fff5f09a 72 ctags -dt ${SRCS} curses.h