all: hello

hello: hello.c hello.h

hello.h: hello.txt
	echo \#define HELLO_WORLD \"`cat $<`\" > $@

.PHONY: clean
clean:
	rm -f hello hello.h