##############################################################################
# (c) SZABO Gergely, 2009
# Free software, distributed under the GNU GPL license
# There is absolutely no warranty.
##############################################################################
HEADERS = version.h usage.h
.PHONY: headers

# First rule in arg1 directory
headers: $(HEADERS)

# Create headers with C string initializers from text files
%.h: ../%.txt
	@sed -e 's/[ \t]*$$//g' -e 's/^/"/g' -e 's/$$/\\n",/g' <$< >$@
