home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume34 / getwxmap / part01 / Makefile < prev    next >
Makefile  |  1993-01-18  |  640b  |  26 lines

  1. #
  2. # Makefile for getwxmap.c ver 2.21
  3. # Copyright (C) January 13, 1993 by Dale A. Harris
  4. #                                {rodmur@ecst.csuchico.edu}
  5. #
  6. CC=gcc
  7. #CC=cc
  8.  
  9. # Remember to switch on the ANSI flag for your compiler
  10. #AFLAG= -Aa #for hp compilers
  11. AFLAG= -ansi # for gcc
  12.  
  13. CFLAGS= -g  # for debugging 
  14. #CFLAGS=-O #most machines in this world
  15. #CFLAGS=-O2  #for gcc
  16. #CFLAGS= +O3 # with cc on HP9000/7xx-series running HPUX 8.*
  17.  
  18. #Be sure to set your own domain name here.
  19. DEFINES= -DSYSV -DDOMAIN=\"ecst.csuchico.edu\"
  20.  
  21. getwxmap: getwxmap.c
  22.     $(CC) $(CFLAGS) $(AFLAG) -o getwxmap $(DEFINES) getwxmap.c
  23.  
  24. clean:
  25.     rm -f getwxmap.o getwxmap core
  26.