CFILES =	pathsend.c

OBJECTS =	pathsend.o

PRINT =	pathsend.c

CMD	= pathsend
DESTIN	= /usr/lib/uucp
CFLAGS	= -O $(DEFS)
DEFS	= 
LIBS	= -ldbm
OWNER	= 
MODE	= 0755

$(CMD)	: $(OBJECTS) /lib/libc.a 
	ld /lib/crt0.o $(OBJECTS) -o $(CMD) $(LIBS) -lc

install	: $(DESTIN)/$(CMD)

$(DESTIN)/$(CMD) : $(CMD)
	cp $(CMD) $(DESTIN)/$(CMD)
	strip $(DESTIN)/$(CMD)
	chmod $(MODE) $(DESTIN)/$(CMD)

depend	:
	@makedepend $(CFILES)

clean	:
	-rm $(OBJECTS) $(CMD)

print	:
	print -h $(PRINT)

lint	:
	lint $(CFILES)

