diff options
Diffstat (limited to 'toxy')
-rw-r--r-- | toxy/Makefile | 11 | ||||
-rw-r--r-- | toxy/build_counter | 6 |
2 files changed, 9 insertions, 8 deletions
diff --git a/toxy/Makefile b/toxy/Makefile index 07cd407..3035cb4 100644 --- a/toxy/Makefile +++ b/toxy/Makefile @@ -8,13 +8,10 @@ checkwiq: rm -f $(WIQFILE) ; fi $(WIQFILE): $(WIDPATH) @echo transferring widget definitions from \"$<\" to \"$@\" - @cat $< | sed \ --e '1i\ -// Do not edit this file (edit \"$<\", and run \"make\").' \ --e '1i\ -//' \ --e '1i\ -\"puts stderr [concat loading built-in widget definitions]\\n\"' \ + @echo -e '// Do not edit this file (edit "$<", and run "make").\ +\n//\nputs stderr [concat loading built-in widget definitions]' \ + | cat - $< | sed \ +-e '1,\|//$$|{p;d;}' \ -e 's/\([\\\"]\)/\\\1/g' \ -e 's/^.*$$/\"&\\n\"/' > $@ @if [ -f $(WIQFILE) ] && ! [ -s $(WIQFILE) ] ; then \ diff --git a/toxy/build_counter b/toxy/build_counter index 34a11d3..749f20b 100644 --- a/toxy/build_counter +++ b/toxy/build_counter @@ -1,3 +1,7 @@ #define TOXY_VERSION "0.1" #define TOXY_RELEASE "alpha" -#define TOXY_BUILD 10 +#define TOXY_BUILD 11 + +#if 0 +TOXY_SNAPSHOT = 0.1-alpha11 +#endif |