.PHONY: clean

hello: ../hello.c
	$(CC) $(CFLAGS) -o $@ $<

clean:
	/bin/rm -f $(PROGRAMS)
