home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / text / adformat / makefile < prev    next >
Makefile  |  1995-02-27  |  191b  |  15 lines

  1. #
  2. # ADFormat Makefile
  3. #
  4.  
  5. CFLAGS = -bs -hi global.sym -wq
  6. OBJ = adformat.o
  7.  
  8. adformat: global.sym $(OBJ)
  9.     ln -g $(OBJ) -o ADFormat -lc
  10.  
  11. global.sym: global.h
  12.     cc -ho global.sym global.h
  13.  
  14.  
  15.