all : WeatherReapter

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

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

go:
	./WeatherReapter

clean:
	rm weather.o WeatherReapter
