home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource1 / ast40dos / makefile < prev    next >
Makefile  |  1994-01-04  |  1KB  |  27 lines

  1. # Makefile for PC Astrolog version 4.00 (cruiser1@stein.u.washington.edu)
  2. # Created for Microsoft nmake utility.
  3. # First created 2/9/1993.
  4. #
  5. # Generally, all that needs to be done to compile (once astrolog.h has been
  6. # customized), is compile each source file, and link them together with the
  7. # math library, and if applicable, the Microsoft C graphics library.
  8. #
  9. # If you don't have access to the mouse.c pseudo-library file, delete the
  10. # references to mouse.obj and mouse on the objs and list lines below. 
  11. #
  12. CC = cl
  13. #If you have a 286 or higher processor, you can add /G2 to the line below.
  14. #if you have a math coprocessor, you can add /FPi to the line below.
  15. #CFLAGS = /AL /Gt150 /W3 /G2 /FPi
  16. CFLAGS = /AL /Gt150 /W3 /Ot /Oe /Ol /Op /Gs
  17.  
  18. name = astrolog
  19. objs = data.obj general.obj formulas.obj charts.obj options.obj intrpret.obj\
  20.  driver.obj xdata.obj xgeneral.obj xcharts.obj xoptions.obj xdriver.obj\
  21.  placalc.obj mouse.obj
  22.  
  23. $(name).exe : $(objs)
  24. # We are compiling in Large memory model with 16,384 bytes for stack storage.
  25.   $(CC) /F 4000 /o $(name) *.obj graphics.lib
  26. #
  27.