home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume30
/
astrolog
/
part01
/
Makefile
< prev
next >
Wrap
Makefile
|
1992-06-19
|
744b
|
22 lines
# Makefile for Unix Astrolog version 2.25 (cruiser1@milton.u.washington.edu)
# First created 11/21/1991
#
# This Makefile is included only for convenience. One could easily compile
# Astrolog on a Unix system by hand with the command:
# % cc -c *.c; cc -o astrolog *.o -lm -lX11
#
# Generally, all that needs to be done to compile once astrolog.h has been
# edited, is compile each source file, and link them together with the math
# library, and if applicable, the main X library.
#
NAME = astrolog
OBJ = data.o formulas.o charts.o options.o xcharts.o graphics.o driver.o
# If you don't have X windows, delete the "-lX11" part from the line below:
LIBS = -lm -lX11
CFLAGS = -O
astrolog:: $(OBJ)
cc -o $(NAME) $(OBJ) $(LIBS)
strip $(NAME)
#