Symbolic links do not appear to work for the Google Code web server. Use
hard linked files in demo/*, instead. git-svn-id: https://shellinabox.googlecode.com/svn/trunk@95 0da03de8-d603-11dd-86c2-0f8696b7b6f9
This commit is contained in:
parent
87937478dc
commit
d249077169
6 changed files with 45 additions and 4 deletions
23
Makefile.am
23
Makefile.am
|
@ -89,6 +89,29 @@ shellinaboxd_LDFLAGS = -static
|
||||||
libtool: $(LIBTOOL_DEPS)
|
libtool: $(LIBTOOL_DEPS)
|
||||||
$(SHELL) ./config.status --recheck
|
$(SHELL) ./config.status --recheck
|
||||||
|
|
||||||
|
|
||||||
|
${top_srcdir}/demo/demo.js: ${top_srcdir}/demo/beep.wav \
|
||||||
|
${top_srcdir}/demo/demo.jspp \
|
||||||
|
${top_srcdir}/demo/favicon.ico \
|
||||||
|
${top_srcdir}/demo/styles.css \
|
||||||
|
${top_srcdir}/demo/vt100.js
|
||||||
|
|
||||||
|
${top_srcdir}/demo/beep.wav: ${top_srcdir}/shellinabox/beep.wav
|
||||||
|
@rm -f "$@"
|
||||||
|
ln "$<" "$@"
|
||||||
|
|
||||||
|
${top_srcdir}/demo/favicon.ico: ${top_srcdir}/shellinabox/favicon.ico
|
||||||
|
@rm -f "$@"
|
||||||
|
ln "$<" "$@"
|
||||||
|
|
||||||
|
${top_srcdir}/demo/styles.css: ${top_srcdir}/shellinabox/styles.css
|
||||||
|
@rm -f "$@"
|
||||||
|
ln "$<" "$@"
|
||||||
|
|
||||||
|
${top_srcdir}/demo/vt100.js: ${top_srcdir}/shellinabox/vt100.js
|
||||||
|
@rm -f "$@"
|
||||||
|
ln "$<" "$@"
|
||||||
|
|
||||||
shellinaboxd.1: shellinabox/shellinaboxd.man.in config.h
|
shellinaboxd.1: shellinabox/shellinaboxd.man.in config.h
|
||||||
@src="${top_srcdir}/shellinabox/shellinaboxd.man.in"; \
|
@src="${top_srcdir}/shellinabox/shellinaboxd.man.in"; \
|
||||||
echo preprocess "$$src" '>'"$@"; \
|
echo preprocess "$$src" '>'"$@"; \
|
||||||
|
|
22
Makefile.in
22
Makefile.in
|
@ -1003,6 +1003,28 @@ uninstall-man: uninstall-man1
|
||||||
libtool: $(LIBTOOL_DEPS)
|
libtool: $(LIBTOOL_DEPS)
|
||||||
$(SHELL) ./config.status --recheck
|
$(SHELL) ./config.status --recheck
|
||||||
|
|
||||||
|
${top_srcdir}/demo/demo.js: ${top_srcdir}/demo/beep.wav \
|
||||||
|
${top_srcdir}/demo/demo.jspp \
|
||||||
|
${top_srcdir}/demo/favicon.ico \
|
||||||
|
${top_srcdir}/demo/styles.css \
|
||||||
|
${top_srcdir}/demo/vt100.js
|
||||||
|
|
||||||
|
${top_srcdir}/demo/beep.wav: ${top_srcdir}/shellinabox/beep.wav
|
||||||
|
-rm -f "$@"
|
||||||
|
ln "$<" "$@"
|
||||||
|
|
||||||
|
${top_srcdir}/demo/favicon.ico: ${top_srcdir}/shellinabox/favicon.ico
|
||||||
|
-rm -f "$@"
|
||||||
|
ln "$<" "$@"
|
||||||
|
|
||||||
|
${top_srcdir}/demo/styles.css: ${top_srcdir}/shellinabox/styles.css
|
||||||
|
-rm -f "$@"
|
||||||
|
ln "$<" "$@"
|
||||||
|
|
||||||
|
${top_srcdir}/demo/vt100.js: ${top_srcdir}/shellinabox/vt100.js
|
||||||
|
-rm -f "$@"
|
||||||
|
ln "$<" "$@"
|
||||||
|
|
||||||
shellinaboxd.1: shellinabox/shellinaboxd.man.in config.h
|
shellinaboxd.1: shellinabox/shellinaboxd.man.in config.h
|
||||||
@src="${top_srcdir}/shellinabox/shellinaboxd.man.in"; \
|
@src="${top_srcdir}/shellinabox/shellinaboxd.man.in"; \
|
||||||
echo preprocess "$$src" '>'"$@"; \
|
echo preprocess "$$src" '>'"$@"; \
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
../shellinabox/beep.wav
|
|
|
@ -1 +0,0 @@
|
||||||
../shellinabox/favicon.ico
|
|
|
@ -1 +0,0 @@
|
||||||
../shellinabox/styles.css
|
|
|
@ -1 +0,0 @@
|
||||||
../shellinabox/vt100.js
|
|
Loading…
Reference in a new issue