home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / misc / makefile < prev    next >
Makefile  |  1992-07-23  |  790b  |  36 lines

  1.  
  2. ALL: devo.exe
  3.  
  4. devo.exe: devo.obj my_scree.obj devospac.obj getstuff.obj save_res.obj \
  5.     energy.obj repo.obj block.obj draw.obj
  6.     link /ST:20000 devo+my_scree+devospac+getstuff+save_res+energy+\
  7.     repo+block+draw;
  8.  
  9. devo.obj: devo.c devospac.h devo.h
  10.     qcl /c /AC /G2 /Gs /O devo.c
  11.  
  12. repo.obj: repo.c devospac.h devo.h
  13.     qcl /c /AC /G2 /Gs /O repo.c
  14.  
  15. draw.obj: draw.c devospac.h devo.h
  16.     qcl /c /AC /G2 /Gs /O draw.c
  17.  
  18. my_scree.obj: my_scree.c devo.h
  19.     qcl /c /AC /G2 /Gs /O my_scree.c
  20.  
  21. devospac.obj: devospac.c devo.h
  22.     qcl /c /AC /G2 /Gs devospac.c
  23.  
  24. getstuff.obj: getstuff.c devo.h
  25.     qcl /c /AC /G2 /Gs getstuff.c
  26.  
  27. save_res.obj: save_res.c devo.h
  28.     qcl /c /AC /G2 /Gs save_res.c
  29.  
  30. energy.obj: energy.c devo.h
  31.     qcl /c /AC /G2 /Gs /O energy.c
  32.  
  33. block.obj: block.c devo.h
  34.     qcl /c /AC /G2 /Gs /O block.c
  35.  
  36.