home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-06-12 | 1.5 KB | 36 lines |
- # Astrolog (Version 4.10) File: Makefile (PC version)
- #
- # IMPORTANT NOTICE: the graphics database and chart display routines
- # used in this program are Copyright (C) 1991-1994 by Walter D. Pullen
- # (cruiser1@stein.u.washington.edu). Permission is granted to freely
- # use and distribute these routines provided one doesn't sell,
- # restrict, or profit from them in any way. Modification is allowed
- # provided these notices remain with any altered or edited versions of
- # the program.
- #
- # This Makefile 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
- # reference to mouse.obj on the "objs" line below.
- #
- #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 = /nologo /AL /Gt150 /W3 /G2 /FPi
- CFLAGS = /nologo /AL /Gt150 /W3 /Ot /Oe /Ol /Op /Gs
-
- CC = -arch m68k -arch i386 -arch hppa -arch sparc cl
- 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
- #
-