# Makefile for PC Astrolog version 4.00 (cruiser1@stein.u.washington.edu)
# Created for Microsoft nmake utility.
# First created 2/9/1993.
#
# Generally, all that needs to be done to compile (once astrolog.h has been
# customized), is compile each source file, and link them together with the
# math library, and if applicable, the Microsoft C graphics library.
#
# If you don't have access to the mouse.c pseudo-library file, delete the
# references to mouse.obj and mouse on the objs and list lines below. 
#
CC = cl
#If you have a 286 or higher processor, you can add /G2 to the line below.
#if you have a math coprocessor, you can add /FPi to the line below.
#CFLAGS = /AL /Gt150 /W3 /G2 /FPi
CFLAGS = /AL /Gt150 /W3 /Ot /Oe /Ol /Op /Gs

name = astrolog
objs = data.obj general.obj formulas.obj charts.obj options.obj intrpret.obj\
 driver.obj xdata.obj xgeneral.obj xcharts.obj xoptions.obj xdriver.obj\
 placalc.obj mouse.obj

$(name).exe : $(objs)
# We are compiling in Large memory model with 16,384 bytes for stack storage.
  $(CC) /F 4000 /o $(name) *.obj graphics.lib
#
