Update of /cvsroot/scsh/scsh-0.6
In directory usw-pr-cvs1:/tmp/cvs-serv16710
Modified Files:
Makefile.in
Log Message:
+ Extended target dist by the files for scsh. Yields a reasonable tarball now.
+ Install html files and scsh/*/*.scm
Index: Makefile.in
===================================================================
RCS file: /cvsroot/scsh/scsh-0.6/Makefile.in,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -r1.32 -r1.33
*** Makefile.in 2001/10/01 14:47:03 1.32
--- Makefile.in 2001/12/05 18:32:41 1.33
***************
*** 86,90 ****
# LINKER_RUNNABLE = $(LINKER_VM) -i $(IMAGE)
! # therefor according to 2. but we cannot use scsh since -i is not understood
LINKER_VM = $(BUILD_RUNNABLE) $(BIG_HEAP)
LINKER_RUNNABLE = $(BUILD_RUNNABLE)
--- 86,90 ----
# LINKER_RUNNABLE = $(LINKER_VM) -i $(IMAGE)
! # therefore according to 2. but we cannot use scsh since -i is not understood
LINKER_VM = $(BUILD_RUNNABLE) $(BIG_HEAP)
LINKER_RUNNABLE = $(BUILD_RUNNABLE)
***************
*** 101,105 ****
IMAGE = scheme48.image
! INITIAL = $(srcdir)/build/initial.image
VM = scshvm
LIBCIG = cig/lib$(VM).a
--- 101,105 ----
IMAGE = scheme48.image
! INITIAL = build/initial.image
VM = scshvm
LIBCIG = cig/lib$(VM).a
***************
*** 136,140 ****
s48_init_userinfo s48_init_sighandlers \
s48_init_syscalls s48_init_network s48_init_flock \
! s48_init_dirstuff s48_init_time s48_init_tty
UNIX_OBJS = c/unix/misc.o c/unix/io.o c/unix/fd-io.o c/unix/event.o
--- 136,141 ----
s48_init_userinfo s48_init_sighandlers \
s48_init_syscalls s48_init_network s48_init_flock \
! s48_init_dirstuff s48_init_time s48_init_tty \
! s48_init_cig
UNIX_OBJS = c/unix/misc.o c/unix/io.o c/unix/fd-io.o c/unix/event.o
***************
*** 210,216 ****
# This says how to process .scm files with cig to make .c stubs.
! .SUFFIXES: .scm
! .scm.c:
! $(srcdir)/$(VM) -o $(srcdir)/$(VM) -i $(CIG) < $< > $*.c
# These .h files mediate between the code exported from foo1.c
--- 211,217 ----
# This says how to process .scm files with cig to make .c stubs.
! #.SUFFIXES: .scm
! #.scm.c:
! # $(srcdir)/$(VM) -o $(srcdir)/$(VM) -i $(CIG) < $< > $*.c
# These .h files mediate between the code exported from foo1.c
***************
*** 257,264 ****
$(LIBSCSHVM): c/smain.o $(OBJS)
$(RM) $@
! $(AR) $@ c/smain.o $(OBJS)
$(RANLIB) $@
! $(LIBSCSH): $(OBJS) $(OBJS) $(UNIX_OBJS) $(LIBOBJS) $(EXTERNAL_OBJECTS)
$(RM) $@
\
rm -f /tmp/s48_external_$$$$.c &&
\
--- 258,265 ----
$(LIBSCSHVM): c/smain.o $(OBJS)
$(RM) $@
! $(AR) $@ c/smain.o $(OBJS)
$(RANLIB) $@
! $(LIBSCSH): $(OBJS) $(UNIX_OBJS) $(LIBOBJS) $(EXTERNAL_OBJECTS)
$(RM) $@
\
rm -f /tmp/s48_external_$$$$.c &&
\
***************
*** 331,335 ****
inst-inc:
! $(INSTALL_DATA) $(srcdir)/c/scheme48.h $(incdir)
install-cig: cig
--- 332,337 ----
inst-inc:
! $(INSTALL_DATA) $(srcdir)/c/scheme48.h $(incdir)
! $(INSTALL_DATA) $(srcdir)/c/write-barrier.h $(incdir)
install-cig: cig
***************
*** 350,358 ****
inst-doc:
! for f in $(srcdir)/doc/*.txt $(srcdir)/doc/*.tex $(srcdir)/doc/*.ps; do
\
$(INSTALL_DATA) $$f $(LIB)/doc/;
\
done &&
\
! for f in $(srcdir)/doc/scsh-manual/*.tex;
\
do $(INSTALL_DATA) $$f $(LIB)/doc/scsh-manual/;
\
done
--- 352,367 ----
inst-doc:
! for f in $(srcdir)/doc/*.txt $(srcdir)/doc/src/*.tex
$(srcdir)/doc/*.ps; do \
$(INSTALL_DATA) $$f $(LIB)/doc/;
\
done &&
\
! for f in $(srcdir)/doc/scsh-manual/*.tex
\
! $(srcdir)/doc/scsh-manual/*.dvi
\
! $(srcdir)/doc/scsh-manual/*.ps;
\
do $(INSTALL_DATA) $$f $(LIB)/doc/scsh-manual/;
\
+ done &&
\
+ for f in $(srcdir)/doc/scsh-manual/html/*.html
\
+ $(srcdir)/doc/scsh-manual/html/*.gif
\
+ $(srcdir)/doc/scsh-manual/html/*.css;
\
+ do $(INSTALL_DATA) $$f $(LIB)/doc/scsh-manual/html/;
\
done
***************
*** 383,387 ****
done && \
for dir in
\
! rts env big opt misc link scsh doc doc/scsh-manual cig;
\
do
\
{ mkdir -p $(LIB)/$$dir && [ -w $(LIB)/$$dir ]; } || {
\
--- 392,396 ----
done && \
for dir in
\
! rts env big opt misc link scsh doc/scsh-manual/html cig;
\
do
\
{ mkdir -p $(LIB)/$$dir && [ -w $(LIB)/$$dir ]; } || {
\
***************
*** 444,450 ****
# DISTFILES should include all sources.
! DISTFILES = README COPYING INSTALL configure \
acconfig.h configure.in Makefile.in install-sh \
! doc/*.ps doc/*.txt doc/html/*.html doc/scheme48.man \
doc/src/*.tex doc/src/*.sty \
emacs/README build/*-version-number build/*.exec \
--- 453,459 ----
# DISTFILES should include all sources.
! DISTFILES = README COPYING INSTALL configure config.sub config.guess \
acconfig.h configure.in Makefile.in install-sh \
! doc/*.ps doc/*.txt doc/html/*.html \
doc/src/*.tex doc/src/*.sty \
emacs/README build/*-version-number build/*.exec \
***************
*** 457,461 ****
scheme/*.scm scheme/*/*.scm \
ps-compiler \
! c/sysdep.h.in
distname = $(RUNNABLE)-0.`cat build/minor-version-number`
--- 466,480 ----
scheme/*.scm scheme/*/*.scm \
ps-compiler \
! c/sysdep.h.in \
! scsh/*.scm scsh/*/*.scm \
! scsh/*.[ch] scsh/*/*.[ch] \
! scsh/*.scm.in scsh/*/Makefile.inc \
! cig/*.scm cig/*.[ch] \
! doc/scsh.man \
! doc/scsh-manual/*.tex doc/scsh-manual/man.ps \
! doc/scsh-manual/man.dvi doc/scsh-manual/Makefile \
! doc/scsh-manual/THANKS doc/scsh-manual/html/*.html \
! doc/scsh-manual/html/*.gif doc/scsh-manual/html/*.css
!
distname = $(RUNNABLE)-0.`cat build/minor-version-number`
***************
*** 763,766 ****
--- 782,786 ----
scsh/tty.scm \
scsh/utilities.scm \
+ scsh/weaktables.scm \
scsh/rx/cond-package.scm \
scsh/rx/packages.scm \
***************
*** 845,849 ****
$(INSTALL_PROGRAM) $(srcdir)/$(LIBSCSH) $(libdir)/$(LIBSCSH)
$(RANLIB) $(libdir)/$(LIBSCSH)
! for f in $(srcdir)/scsh/*.scm; \
do $(INSTALL_DATA) $$f $(LIB)/scsh/; done
--- 865,869 ----
$(INSTALL_PROGRAM) $(srcdir)/$(LIBSCSH) $(libdir)/$(LIBSCSH)
$(RANLIB) $(libdir)/$(LIBSCSH)
! for f in $(srcdir)/scsh/*.scm $(srcdir)/scsh/*/*.scm; \
do $(INSTALL_DATA) $$f $(LIB)/scsh/; done
|