# Makefile for RESTORE

CFLAGS=
OBJ=restore.o getopt.o
SRC=restore.c getopt.c
OTHERS=backup

restore:	$(OBJ) backup
		cc -o restore.prg $(OBJ)

clean:
		( rm *.o *.prg ; exit 0 )

# `ct' is the copy-and-preserve-timestamp routine posted last November

backup:		$(SRC) $(OTHERS)
		( touch backup; exit 0 )
		ct -n $? backup d:\src\rest
