all : WeatherReapter

%.o : %.c
	gcc -D_POSIX_C_SOURCE -c -Wall $*.c

WeatherReapter : getWeather.05.c netsender.o weather.o
	gcc -o WeatherReapter weather.o netsender.o getWeather.05.c

go:
	./WeatherReapter

clean:
	rm netsender.o weather.o WeatherReapter
