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

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

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

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

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/tendra5-amd64/src/tools/tspec/Makefile – Rev 93

Subversion Repositories tendra.SVN

Rev

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

Rev Author Line No. Line
2 7u83 1
 
43 7u83 2
include ../../../defs.mk
15 7u83 3
 
43 7u83 4
 
6 7u83 5
DEST=${OBJ_DIR}/src/lib
6
 
2 7u83 7
 
6 7u83 8
TCCOPTS=	-Yposix1 -Xs
2 7u83 9
 
10
# Dependencies and construction rules
11
 
92 7u83 12
PROG=	tspec
2 7u83 13
 
92 7u83 14
OBJS=	hash.o index.o lex.o main.o makefile.o name.o object.o print.o\
15
	syntax.o type.o utility.o variable.o
2 7u83 16
 
15 7u83 17
.c.o:
92 7u83 18
	$(CC) -c $(TCFLAGS) $(CFLAGS) -o $@ $<
15 7u83 19
 
20
$(PROG): $(OBJS)
21
	$(CC) -o $(PROG) $(LDFLAGS) $(OBJS)
22
 
23
clean:
24
	rm -f $(OBJS)
25
	rm -f $(PROG)
93 7u83 26
	rm -f *.core
15 7u83 27
 
22 7u83 28
install: $(PROG)
59 7u83 29
	mkdir -p $(INSTALL_BINDIR)
22 7u83 30
	install $(PROG) $(INSTALL_BINDIR)/$(PROG)
31
 
15 7u83 32
depend:
33
	mkdep $(CFLAGS) *.c
34
 
35
 
55 7u83 36
#-include .depend
6 7u83 37
#LEXI=lexi
38
#SID=sid
39
#SIDOPTS=-l ossg-c -s no-lines
40
#
15 7u83 41
#SID_OUT=${SRC}/syntax.o ${SRC}/syntax.h
6 7u83 42
#LEXI_OUT=${SRC}/lexer.h ${SRC}/keyword.h
43
#
44
#auto : ${SID_OUT} ${LEXI_OUT}
45
#
15 7u83 46
#${SRC}/syntax.o : ${SRC}/syntax.sid ${SRC}/syntax.act
6 7u83 47
#	@${REMOVE} ${SID_OUT}
48
#	${SID} ${SIDOPTS} ${SRC}/syntax.sid ${SRC}/syntax.act ${SID_OUT}
49
#
50
#${SRC}/lexer.h : ${SRC}/lexer.lxi
51
#	@${REMOVE} ${SRC}/lexer.h
52
#	${LEXI} ${SRC}/lexer.lxi ${SRC}/lexer.h
53
#
54
#${SRC}/keyword.h : ${SRC}/lexer.lxi
55
#	@${REMOVE} ${SRC}/keyword.h
56
#	${LEXI} -k ${SRC}/lexer.lxi ${SRC}/keyword.h
57
#
58
#auto_clobber :
59
#	${REMOVE} ${SID_OUT} ${LEXI_OUT}
2 7u83 60