Update of /cvsroot/scsh/scx
In directory usw-pr-cvs1:/tmp/cvs-serv18810
Modified Files:
Makefile
Log Message:
+ Let the image depend on the config files.
+ Minor clean-up.
Index: Makefile
===================================================================
RCS file: /cvsroot/scsh/scx/Makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** Makefile 2001/12/04 13:13:26 1.3
--- Makefile 2001/12/04 14:20:18 1.4
***************
*** 51,54 ****
--- 51,59 ----
scheme/xlib/wm.scm
+ SCM_CONFIG_FILES = scheme/xlib/xlib-type-interfaces.scm \
+ scheme/xlib/xlib-type-package.scm \
+ scheme/xlib/xlib-interfaces.scm \
+ scheme/xlib/xlib-packages.scm
+
$(SCX_VM): tmpmain.o $(OBJECTS)
$(CC) -g -o $(SCX_VM) -L $(SCSH_LIB) -L $(X11_LIB) \
***************
*** 72,82 ****
STARTUP_MSG = "with SCX $(SCX_VERSION), the X11 support."
! $(SCX_IMAGE): $(SCX_VM) $(SCM_FILES)
( \
echo ",batch on"; \
! echo ",config ,load scheme/xlib/xlib-type-interfaces.scm"; \
! echo ",config ,load scheme/xlib/xlib-type-package.scm"; \
! echo ",config ,load scheme/xlib/xlib-interfaces.scm"; \
! echo ",config ,load scheme/xlib/xlib-packages.scm"; \
echo ",load-package xlib"; \
echo ",load-package xlib-types"; \
--- 77,84 ----
STARTUP_MSG = "with SCX $(SCX_VERSION), the X11 support."
! $(SCX_IMAGE): $(SCX_VM) $(SCM_FILES) $(SCM_CONFIG_FILES)
( \
echo ",batch on"; \
! echo ",config ,load $(SCM_CONFIG_FILES)"; \
echo ",load-package xlib"; \
echo ",load-package xlib-types"; \
***************
*** 87,93 ****
$(CC) -g -o $@ -L $(SCSH_LIB) -L $(X11_LIB) \
main.o $(OBJECTS) -lscsh -lm -lX11 -lcrypt &&
-
- #SCSH_IMAGE = "/afs/wsi/home/dfreese/i386_fbsd43/lib/scheme48/scsh.image"
- #main.c:
clean:
--- 89,92 ----
|