home *** CD-ROM | disk | FTP | other *** search
Makefile | 1988-01-07 | 353 b | 19 lines |
- # 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
-