home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume34
/
getwxmap
/
part01
/
Makefile
< prev
next >
Wrap
Makefile
|
1993-01-18
|
640b
|
26 lines
#
# Makefile for getwxmap.c ver 2.21
# Copyright (C) January 13, 1993 by Dale A. Harris
# {rodmur@ecst.csuchico.edu}
#
CC=gcc
#CC=cc
# Remember to switch on the ANSI flag for your compiler
#AFLAG= -Aa #for hp compilers
AFLAG= -ansi # for gcc
CFLAGS= -g # for debugging
#CFLAGS=-O #most machines in this world
#CFLAGS=-O2 #for gcc
#CFLAGS= +O3 # with cc on HP9000/7xx-series running HPUX 8.*
#Be sure to set your own domain name here.
DEFINES= -DSYSV -DDOMAIN=\"ecst.csuchico.edu\"
getwxmap: getwxmap.c
$(CC) $(CFLAGS) $(AFLAG) -o getwxmap $(DEFINES) getwxmap.c
clean:
rm -f getwxmap.o getwxmap core