diff options
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: |