|
|
1.1 root 1: # @(#) libcurses.mk: 1.1 10/15/83
2: #
3: # Curses Library High Level Makefile.
4: # To compile libcurses & the tic database compiler normally, type:
5: # "make all tic"
6: # To compile a particular file with normal compilation type:
7: # "make FILES='<particular .o files>"
8: # If debugging is desired then type:
9: # "make O=debug FILES='<particular .o files>"
10: # If tracing is desired then type:
11: # "make O=trace FILES='<particular .o files>"
12: # If profiling is desired then type:
13: # "make O=profile FILES='<particular .o files>"
14: # To compile the show program type:
15: # "make show"
16: # To compile only the tic compiler type:
17: # "make tic"
18: # To compile the test program ti4 that uses MINICURSES type:
19: # "make ti4"
20: #
21: SHELL=/bin/sh
22: all:
23: cd screen ; make all
24: @echo "The libcurses.a & tic have been made."
25:
26: libcurses.a:
27: cd screen ; make libcurses.a
28: @echo "Libcurses.a has been made."
29:
30: ti4:
31: cd screen ; make ti4
32: @echo "The ti4 program has been made."
33:
34: tic:
35: cd screen ; make tic
36: @echo "The tic compiler has been made."
37:
38: show:
39: cd screen ; make show
40: @echo "The show program has been made."
41:
42: install:
43: cd screen ; make install
44: -mkdir /usr/lib/terminfo
45: @echo It will take 20 minutes or more to generate /usr/lib/terminfo/*/*.
46: (cd terminfo ; make all 2>&1 > errs ; echo "tic done" )
47:
48: clean:
49: cd screen ; make clean
50: cd terminfo ; make clean
51:
52: clobber:
53: cd screen ; make clobber
54: cd terminfo ; make clean
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.