1996-09-27 06:29:02 -04:00
|
|
|
#
|
|
|
|
# STk/Lib Makefile
|
|
|
|
#
|
|
|
|
# Author: Erick Gallesio [eg@unice.fr]
|
|
|
|
# Creation date: 2-Oct-1995 21:17
|
1998-04-30 07:04:33 -04:00
|
|
|
# Last file update: 27-Apr-1998 12:23
|
1996-09-27 06:29:02 -04:00
|
|
|
|
|
|
|
include ../config.make
|
|
|
|
|
|
|
|
HLP_DIR=$(libdir)/Help
|
|
|
|
|
|
|
|
lib:
|
|
|
|
|
|
|
|
install:
|
|
|
|
-if [ ! -d $(HLP_DIR) ] ; then mkdir -p $(HLP_DIR); fi
|
1998-04-10 06:59:06 -04:00
|
|
|
chmod 0755 $(HLP_DIR)
|
1996-09-27 06:29:02 -04:00
|
|
|
$(CP) *.html $(HLP_DIR)
|
|
|
|
chmod 0644 $(HLP_DIR)/*.html
|
|
|
|
-if [ ! -d $(HLP_DIR)/Img ] ; then mkdir -p $(HLP_DIR)/Img; fi
|
1998-04-10 06:59:06 -04:00
|
|
|
chmod 0755 $(HLP_DIR)/Img
|
1996-09-27 06:29:02 -04:00
|
|
|
$(CP) Img/*.gif $(HLP_DIR)/Img
|
|
|
|
chmod 0644 $(HLP_DIR)/Img/*.gif
|
1998-04-30 07:04:33 -04:00
|
|
|
# ../Src/test-stk -no -f make-link.stk $(HLP_DIR)
|
1996-09-27 06:29:02 -04:00
|
|
|
|
|
|
|
install.libs:
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f index.html
|
|
|
|
|
|
|
|
very-clean: clean
|
|
|
|
|
|
|
|
|
|
|
|
|