CFLAGS= -O
DEST=	/usr/local/etc
OBJECTS=	dir.o getfile.o interact.o rstr.o
VPATH= ..

512restor: $(OBJECTS)
	cc -o 512restor $(OBJECTS)

install: $(DEST)/512restor

$(DEST)/512restor: 512restor
	install -c -s -m 4750 -o root -g operator 512restor $(DEST)

clean:
	rm -f $(OBJECTS) 512restor

$(OBJECTS): rstr.h
