Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – /branches/algol60/src/tools/tspec/Makefile – Rev 7

Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7 7u83 1
# $Id$
2 7u83 2
 
3
# Standard directories and files
4
 
7 7u83 5
DEST=${OBJ_DIR}/src/lib
6
#SRC=${BASE}/src/tools/tspec
7
API_DIR=${BASE_DIR}/src/lib/apis
8
 
2 7u83 9
# Standard variables
10
 
7 7u83 11
WARNS?=		2
12
 
13
TCCOPTS=	-Yposix1 -Xs
14
CCOPTS=		${TCCOPTS} -I${BASE_DIR}/${INCLUDE} -I${.CURDIR}
2 7u83 15
LIBS=
16
 
17
# Dependencies and construction rules
18
 
7 7u83 19
PROG=		${.CURDIR:T}
20
WRAPPER=	tspec.sh
2 7u83 21
 
7 7u83 22
SRCS=		hash.c index.c lex.c main.c makefile.c name.c object.c print.c\
23
		syntax.c type.c utility.c variable.c
2 7u83 24
 
7 7u83 25
#LEXI=lexi
26
#SID=sid
27
#SIDOPTS=-l ossg-c -s no-lines
28
#
29
#SID_OUT=${SRC}/syntax.c ${SRC}/syntax.h
30
#LEXI_OUT=${SRC}/lexer.h ${SRC}/keyword.h
31
#
32
#auto : ${SID_OUT} ${LEXI_OUT}
33
#
34
#${SRC}/syntax.c : ${SRC}/syntax.sid ${SRC}/syntax.act
35
#	@${REMOVE} ${SID_OUT}
36
#	${SID} ${SIDOPTS} ${SRC}/syntax.sid ${SRC}/syntax.act ${SID_OUT}
37
#
38
#${SRC}/lexer.h : ${SRC}/lexer.lxi
39
#	@${REMOVE} ${SRC}/lexer.h
40
#	${LEXI} ${SRC}/lexer.lxi ${SRC}/lexer.h
41
#
42
#${SRC}/keyword.h : ${SRC}/lexer.lxi
43
#	@${REMOVE} ${SRC}/keyword.h
44
#	${LEXI} -k ${SRC}/lexer.lxi ${SRC}/keyword.h
45
#
46
#auto_clobber :
47
#	${REMOVE} ${SID_OUT} ${LEXI_OUT}
2 7u83 48
 
7 7u83 49
.include "../Makefile.inc"