ALL = get_tz_transitions

all: $(ALL)

get_tz_transitions: get_tz_transitions.c
	gcc -g $^ -o $@

clean:
	rm -f $(ALL)
