home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / archiver / restore / makefile < prev    next >
Makefile  |  1988-01-06  |  353b  |  19 lines

  1. # Makefile for RESTORE
  2.  
  3. CFLAGS=
  4. OBJ=restore.o getopt.o
  5. SRC=restore.c getopt.c
  6. OTHERS=backup
  7.  
  8. restore:    $(OBJ) backup
  9.         cc -o restore.prg $(OBJ)
  10.  
  11. clean:
  12.         ( rm *.o *.prg ; exit 0 )
  13.  
  14. # `ct' is the copy-and-preserve-timestamp routine posted last November
  15.  
  16. backup:        $(SRC) $(OTHERS)
  17.         ( touch backup; exit 0 )
  18.         ct -n $? backup d:\src\rest
  19.