summaryrefslogtreecommitdiff
path: root/utils/Burg/Doc/Makefile
blob: 60e603f44143826701c389513cb3fd3a1dcf784c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
##===- utils/Burg/Doc/Makefile ------------------------------*- Makefile -*-===##
# 
#                     The LLVM Compiler Infrastructure
#
# This file was developed by the LLVM research group and is distributed under
# the University of Illinois Open Source License. See LICENSE.TXT for details.
# 
##===----------------------------------------------------------------------===##
# $Id$

#CFLAGS	=
#CFLAGS	= -O
#CFLAGS	= -O -DNOLEX
CFLAGS	= -g -DDEBUG
#CFLAGS	= -g -DNOLEX -DDEBUG

SRCS = \
	be.c \
	burs.c \
	closure.c \
	delta.c \
	fe.c \
	item.c \
	lex.c \
	list.c \
	main.c \
	map.c \
	nonterminal.c \
	operator.c \
	pattern.c \
	plank.c \
	queue.c \
	rule.c \
	string.c \
	symtab.c \
	table.c \
	trim.c \
	zalloc.c

BU_OBJS = \
	burs.o \
	closure.o \
	delta.o \
	item.o \
	list.o \
	map.o \
	nonterminal.o \
	operator.o \
	pattern.o \
	queue.o \
	rule.o \
	table.o \
	trim.o \
	zalloc.o

FE_OBJS = \
	be.o \
	fe.o \
	lex.o \
	main.o \
	plank.o \
	string.o \
	symtab.o \
	y.tab.o

all: test

burg: $(BU_OBJS) $(FE_OBJS)
	$(CC) -o burg $(CFLAGS) $(BU_OBJS) $(FE_OBJS)

y.tab.c y.tab.h: gram.y
	yacc -d gram.y

clean:
	rm -f *.o y.tab.h y.tab.c core burg *.aux *.log *.dvi sample sample.c tmp

$(FE_OBJS):	b.h
$(BU_OBJS):	b.h
$(FE_OBJS):	fe.h

lex.o:	y.tab.h

doc.dvi: doc.tex
	latex doc; latex doc

test: burg sample.gr
	./burg -I     <sample.gr   >sample.c && cc $(CFLAGS) -o sample sample.c && ./sample
	./burg -I      sample.gr   >tmp && cmp tmp sample.c
	./burg -I     <sample.gr -o tmp && cmp tmp sample.c
	./burg -I      sample.gr -o tmp && cmp tmp sample.c
	./burg -I -O0 <sample.gr   >tmp && cmp tmp sample.c
	./burg -I -=  <sample.gr   >tmp && cmp tmp sample.c