home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume30 / astrolog / part01 / Makefile < prev    next >
Makefile  |  1992-06-19  |  744b  |  22 lines

  1. # Makefile for Unix Astrolog version 2.25 (cruiser1@milton.u.washington.edu)
  2. # First created 11/21/1991
  3. #
  4. # This Makefile is included only for convenience. One could easily compile
  5. # Astrolog on a Unix system by hand with the command:
  6. # % cc -c *.c; cc -o astrolog *.o -lm -lX11
  7. #
  8. # Generally, all that needs to be done to compile once astrolog.h has been
  9. # edited, is compile each source file, and link them together with the math
  10. # library, and if applicable, the main X library.
  11. #
  12. NAME = astrolog
  13. OBJ = data.o formulas.o charts.o options.o xcharts.o graphics.o driver.o
  14. # If you don't have X windows, delete the "-lX11" part from the line below:
  15. LIBS = -lm -lX11
  16. CFLAGS = -O
  17.  
  18. astrolog:: $(OBJ)
  19.     cc -o $(NAME) $(OBJ) $(LIBS)
  20.     strip $(NAME)
  21. #
  22.