Deleted Added
full compact
makefile (92422) makefile (107806)
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

--- 12 unchanged lines hidden (view full) ---

21# ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
22# THIS SOFTWARE.
23# ****************************************************************/
24
25CFLAGS = -g
26CFLAGS = -O2
27CFLAGS =
28
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

--- 12 unchanged lines hidden (view full) ---

21# ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
22# THIS SOFTWARE.
23# ****************************************************************/
24
25CFLAGS = -g
26CFLAGS = -O2
27CFLAGS =
28
29CC = gcc -Wall -g -Wwrite-strings
29CC = gcc -Wall -g
30CC = /opt/SUNWspro/bin/cc
31CC = /opt/pure/purify/purify cc
32CC = cc
33
34YACC = bison -y
35YACC = yacc
36YFLAGS = -d
37
38OFILES = b.o main.o parse.o proctab.o tran.o lib.o run.o lex.o
39
30CC = gcc -Wall -g
31CC = /opt/SUNWspro/bin/cc
32CC = /opt/pure/purify/purify cc
33CC = cc
34
35YACC = bison -y
36YACC = yacc
37YFLAGS = -d
38
39OFILES = b.o main.o parse.o proctab.o tran.o lib.o run.o lex.o
40
40SOURCE = awk.h ytab.c ytab.h proto.h awkgram.y lex.c b.c main.c maketab.c parse.c lib.c run.c tran.c proctab.c missing95.c
41SOURCE = awk.h ytab.c ytab.h proto.h awkgram.y lex.c b.c main.c \
42 maketab.c parse.c lib.c run.c tran.c proctab.c missing95.c
41
43
42LISTING = awk.h proto.h awkgram.y lex.c b.c main.c maketab.c parse.c lib.c run.c tran.c missing95.c
44LISTING = awk.h proto.h awkgram.y lex.c b.c main.c maketab.c parse.c \
45 lib.c run.c tran.c missing95.c
43
46
44SHIP = README FIXES $(SOURCE) ytab[ch].bak makefile makefile.win buildwin.bat mac.code awk.1
47SHIP = README FIXES $(SOURCE) ytab[ch].bak makefile makefile.win \
48 buildwin.bat mac.code awk.1
45
46a.out: ytab.o $(OFILES)
47 $(CC) $(CFLAGS) ytab.o $(OFILES) $(ALLOC) -lm
48
49$(OFILES): awk.h ytab.h proto.h
50
51ytab.o: awk.h proto.h awkgram.y
52 $(YACC) $(YFLAGS) awkgram.y

--- 30 unchanged lines hidden ---
49
50a.out: ytab.o $(OFILES)
51 $(CC) $(CFLAGS) ytab.o $(OFILES) $(ALLOC) -lm
52
53$(OFILES): awk.h ytab.h proto.h
54
55ytab.o: awk.h proto.h awkgram.y
56 $(YACC) $(YFLAGS) awkgram.y

--- 30 unchanged lines hidden ---