Subversion Repositories tendra.SVN

Rev

Rev 25 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25 Rev 59
Line 14... Line 14...
14
 
14
 
15
LIBS=
15
LIBS=
16
 
16
 
17
# Dependencies and construction rules
17
# Dependencies and construction rules
18
 
18
 
19
PROG=		${.CURDIR:T}
19
PROG=		disp
20
 
20
 
21
OBJS=		basic.o binding.o capsule.o file.o main.o pretty.o sort.o tdf.o\
21
OBJS=		basic.o binding.o capsule.o file.o main.o pretty.o sort.o tdf.o\
22
		tree.o unit.o utility.o
22
		tree.o unit.o utility.o
23
 
23
 
24
.c.o:
24
.c.o:
Line 30... Line 30...
30
clean:
30
clean:
31
	rm -f $(OBJS)
31
	rm -f $(OBJS)
32
	rm -f $(PROG)
32
	rm -f $(PROG)
33
 
33
 
34
install: $(PROG)
34
install: $(PROG)
35
	install -d $(INSTALL_BINDIR)
35
	mkdir -p $(INSTALL_BINDIR)
36
	install $(PROG) $(INSTALL_BINDIR)/$(PROG)
36
	install $(PROG) $(INSTALL_BINDIR)/$(PROG)
37
 
37
 
38
depend:
38
depend:
39
	mkdep $(CFLAGS) *.c
39
	mkdep $(CFLAGS) *.c
40
 
40
 
Line 54... Line 54...
54
#	${MAKE_TDF} ${SPEC} ${SRC1}/tdf.h ${SRC}/tdf.h
54
#	${MAKE_TDF} ${SPEC} ${SRC1}/tdf.h ${SRC}/tdf.h
55
#
55
#
56
#auto_clobber :
56
#auto_clobber :
57
#	${REMOVE} ${SRC}/tdf.o ${SRC}/tdf.h
57
#	${REMOVE} ${SRC}/tdf.o ${SRC}/tdf.h
58
 
58
 
59
.include "../Makefile.inc"
59
include ../../../defs.mk