diff options
author | Florian Jung <flo@thinkpad.(none)> | 2011-02-10 18:15:12 +0100 |
---|---|---|
committer | Florian Jung <flo@thinkpad.(none)> | 2011-02-10 18:15:12 +0100 |
commit | 67ec646a42b8b9e851c693effbdce18327b67501 (patch) | |
tree | 0a737f17ea13e1c986aba6e4a6004e0a8805b35c /synth/Makefile | |
parent | df131ea4f913fea43c266517a154caa08ff9b088 (diff) |
Added help text
Diffstat (limited to 'synth/Makefile')
-rw-r--r-- | synth/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/synth/Makefile b/synth/Makefile index 39b6e80..e19546f 100644 --- a/synth/Makefile +++ b/synth/Makefile @@ -27,6 +27,11 @@ depend dep: $(SRC) %.o: %.cpp $(CXX) $(CXXFLAGS) -c $< +helpstring.h: helpstring.txt + echo '#define HELPSTRING \' > helpstring.h && \ + cat helpstring.txt | ./text_to_h.sh >> helpstring.h \ + || rm helpstring.h + .PHONY: clean dep depend clean: |