Subversion Repositories tendra.SVN

Rev

Rev 25 | Rev 114 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25 Rev 59
Line 13... Line 13...
13
CCOPTS=		${TCCOPTS} -I${BASE_DIR}/${INCLUDE}
13
CCOPTS=		${TCCOPTS} -I${BASE_DIR}/${INCLUDE}
14
LIBS=
14
LIBS=
15
 
15
 
16
# Dependencies and construction rules
16
# Dependencies and construction rules
17
 
17
 
18
PROG=		${.CURDIR:T}
18
PROG=		tnc
19
 
19
 
20
OBJS=		alignment.o analyser.o bitstream.o check.o de_capsule.o\
20
OBJS=		alignment.o analyser.o bitstream.o check.o de_capsule.o\
21
		de_unit.o decode.o enc_cap.o encode.o eval.o fetch.o file.o\
21
		de_unit.o decode.o enc_cap.o encode.o eval.o fetch.o file.o\
22
		help.o high.o main.o node.o read.o read_cap.o shape.o table.o\
22
		help.o high.o main.o node.o read.o read_cap.o shape.o table.o\
23
		tdf.o utility.o write.o
23
		tdf.o utility.o write.o
Line 32... Line 32...
32
	rm -f $(OBJS)
32
	rm -f $(OBJS)
33
	rm -f $(PROG)
33
	rm -f $(PROG)
34
 
34
 
35
 
35
 
36
install: $(PROG)
36
install: $(PROG)
37
	install -d $(INSTALL_BINDIR)
37
	mkdir -p $(INSTALL_BINDIR)
38
	install $(PROG) $(INSTALL_BINDIR)/$(PROG)
38
	install $(PROG) $(INSTALL_BINDIR)/$(PROG)
39
 
39
 
40
depend:
40
depend:
41
	mkdep $(CFLAGS) *.c
41
	mkdep $(CFLAGS) *.c
42
 
42
 
Line 61... Line 61...
61
#	${MAKE_TDF} ${SPEC} ${SRC1}/check_exp.h ${SRC}/check_exp.h
61
#	${MAKE_TDF} ${SPEC} ${SRC1}/check_exp.h ${SRC}/check_exp.h
62
#
62
#
63
#auto_clobber :
63
#auto_clobber :
64
#	${REMOVE} ${SRC}/tdf.c ${SRC}/tdf.h ${SRC}/check_exp.h
64
#	${REMOVE} ${SRC}/tdf.c ${SRC}/tdf.h ${SRC}/check_exp.h
65
 
65
 
66
.include "../Makefile.inc"
66
#.include "../Makefile.inc"
-
 
67
include ../../../defs.mk
-
 
68