1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# Astrolog (Version 5.30) File: makefile (DOS version)
#
# IMPORTANT NOTICE: The graphics database and chart display routines
# used in this program are Copyright (C) 1991-1996 by Walter D. Pullen
# (Astara@msn.com, http://www.magitech.com/~cruiser1/astrolog.htm).
# 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 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 /Gt50 /W3 /Ox /Os
#CFLAGS = /nologo /AL /Gt50 /W3 /G2 /FPi /Os
CC = cl
name = astrolog
objs = astrolog.obj data.obj data2.obj general.obj io.obj\
calc.obj matrix.obj placalc.obj placalc2.obj\
charts0.obj charts1.obj charts2.obj charts3.obj intrpret.obj\
xdata.obj xgeneral.obj xdevice.obj\
xcharts0.obj xcharts1.obj xcharts2.obj xscreen.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
#
|