]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - contrib/one-true-awk/makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / contrib / one-true-awk / makefile
1 # /****************************************************************
2 # Copyright (C) Lucent Technologies 1997
3 # All Rights Reserved
4
5 # Permission to use, copy, modify, and distribute this software and
6 # its documentation for any purpose and without fee is hereby
7 # granted, provided that the above copyright notice appear in all
8 # copies and that both that the copyright notice and this
9 # permission notice and warranty disclaimer appear in supporting
10 # documentation, and that the name Lucent Technologies or any of
11 # its entities not be used in advertising or publicity pertaining
12 # to distribution of the software without specific, written prior
13 # permission.
14
15 # LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16 # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
17 # IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
18 # SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
20 # IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
21 # ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
22 # THIS SOFTWARE.
23 # ****************************************************************/
24
25 CFLAGS = -g
26 CFLAGS = -O2
27 CFLAGS =
28
29 CC = gcc -Wall -g -Wwrite-strings
30 CC = gcc -fprofile-arcs -ftest-coverage # then gcov f1.c; cat f1.c.gcov
31 CC = gcc -Wall -g
32 CC = cc
33 CC = gcc -O4
34
35
36 YACC = bison -y
37 YACC = yacc
38 YFLAGS = -d
39
40 OFILES = b.o main.o parse.o proctab.o tran.o lib.o run.o lex.o
41
42 SOURCE = awk.h ytab.c ytab.h proto.h awkgram.y lex.c b.c main.c \
43         maketab.c parse.c lib.c run.c tran.c proctab.c missing95.c
44
45 LISTING = awk.h proto.h awkgram.y lex.c b.c main.c maketab.c parse.c \
46         lib.c run.c tran.c missing95.c
47
48 SHIP = README FIXES $(SOURCE) ytab[ch].bak makefile makefile.win \
49         vcvars32.bat buildwin.bat awk.1
50
51 a.out:  ytab.o $(OFILES)
52         $(CC) $(CFLAGS) ytab.o $(OFILES) $(ALLOC)  -lm
53
54 $(OFILES):      awk.h ytab.h proto.h
55
56 ytab.o: awk.h proto.h awkgram.y
57         $(YACC) $(YFLAGS) awkgram.y
58         mv y.tab.c ytab.c
59         mv y.tab.h ytab.h
60         $(CC) $(CFLAGS) -c ytab.c
61
62 proctab.c:      maketab
63         ./maketab >proctab.c
64
65 maketab:        ytab.h maketab.c
66         $(CC) $(CFLAGS) maketab.c -o maketab
67
68 bundle:
69         @cp ytab.h ytabh.bak
70         @cp ytab.c ytabc.bak
71         @bundle $(SHIP)
72
73 tar:
74         @cp ytab.h ytabh.bak
75         @cp ytab.c ytabc.bak
76         @bundle $(SHIP) >awk.shar
77         @tar cf awk.tar $(SHIP)
78         gzip awk.tar
79         ls -l awk.tar.gz
80         @zip awk.zip $(SHIP)
81         ls -l awk.zip
82
83 names:
84         @echo $(LISTING)
85
86 clean:
87         rm -f a.out *.o *.obj maketab maketab.exe *.bb *.bbg *.da *.gcov *.gcno *.gcda # proctab.c