# Weather Alert Makefile CC = gcc # Needed for Linux CFLAGS = -O2 INSTALL = /usr/local/bin # Uncomment for lots of debugging garbage #DEBUG = -DDEBUG -Wall -g weather_alert: weather_alert.c ${CC} ${CFLAGS} ${DEBUG} ${DEFINES} weather_alert.c -o weather_alert install: weather_alert chmod 4550 weather_alert cp weather_alert ${INSTALL} cp weather.sh ${INSTALL} clean: rm -f weather_alert core *.c~