home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / diskutil / tapebios.zoo / support / src / makefile < prev    next >
Encoding:
Makefile  |  1992-03-22  |  393 b   |  19 lines

  1. # Makefile for support programs for TapeBIOS
  2.  
  3. LIBS = ../../lib/tape.olb
  4. CFLAGS = -Wall -O -I../../include -s
  5.  
  6. all: mt dump dumpdir restore
  7.  
  8. mt:
  9.     gcc $(CFLAGS) -o ../exe/mt.ttp mt.c $(LIBS)
  10.  
  11. dump:
  12.     gcc $(CFLAGS) -o ../exe/dump.ttp dump.c $(LIBS)
  13.  
  14. dumpdir:
  15.     gcc $(CFLAGS) -o ../exe/dumpdir.ttp dumpdir.c $(LIBS)
  16.  
  17. restore:
  18.     gcc $(CFLAGS) -o ../exe/restore.ttp restore.c $(LIBS)
  19.