scsh-checkins
[Top] [All Lists]

[Scsh-checkins] CVS: scx Makefile,1.2,1.3

To: scsh-checkins@lists.sourceforge.net
Subject: [Scsh-checkins] CVS: scx Makefile,1.2,1.3
From: Martin Gasbichler <mainzelm@users.sourceforge.net>
Date: Tue Dec 4 05:14:05 2001
List-id: <scsh-checkins.lists.sourceforge.net>
Sender: scsh-checkins-admin@lists.sourceforge.net
Update of /cvsroot/scsh/scx
In directory usw-pr-cvs1:/tmp/cvs-serv1937

Modified Files:
        Makefile 
Log Message:
Let image depend on Scheme source files.


Index: Makefile
===================================================================
RCS file: /cvsroot/scsh/scx/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Makefile    2001/12/04 11:07:15     1.2
--- Makefile    2001/12/04 13:13:26     1.3
***************
*** 17,21 ****
  
  ### The first=default target
! enough: $(SCX_VM)               #$(SCX_IMAGE) #doesn't work yet
  
  ### Making the VM ###
--- 17,21 ----
  
  ### The first=default target
! enough: $(SCX)
  
  ### Making the VM ###
***************
*** 31,34 ****
--- 31,54 ----
        c/xlib/visual.o c/xlib/region.o
  
+ SCM_FILES = scheme/xlib/atom-type.scm scheme/xlib/client.scm \
+       scheme/xlib/color-type.scm scheme/xlib/color.scm \
+       scheme/xlib/colormap-type.scm scheme/xlib/colormap.scm \
+       scheme/xlib/cursor-type.scm scheme/xlib/cursor.scm \
+       scheme/xlib/display-type.scm \
+       scheme/xlib/display.scm scheme/xlib/drawable-type.scm \
+       scheme/xlib/drawable.scm scheme/xlib/error.scm \
+       scheme/xlib/event-type.scm scheme/xlib/event.scm \
+       scheme/xlib/extension.scm scheme/xlib/font-type.scm \
+       scheme/xlib/font.scm scheme/xlib/gcontext-type.scm \
+       scheme/xlib/gcontext.scm scheme/xlib/grab.scm scheme/xlib/graphics.scm \
+       scheme/xlib/helper.scm scheme/xlib/key.scm scheme/xlib/pixel-type.scm \
+       scheme/xlib/pixel.scm scheme/xlib/pixmap-type.scm \
+       scheme/xlib/pixmap.scm scheme/xlib/property.scm \
+       scheme/xlib/region-type.scm scheme/xlib/region.scm \
+       scheme/xlib/text.scm scheme/xlib/utility.scm \
+       scheme/xlib/visual-type.scm scheme/xlib/visual.scm \
+       scheme/xlib/window-type.scm scheme/xlib/window.scm \
+       scheme/xlib/wm.scm
+ 
  $(SCX_VM): tmpmain.o $(OBJECTS)
        $(CC) -g -o $(SCX_VM) -L $(SCSH_LIB) -L $(X11_LIB) \
***************
*** 52,56 ****
  STARTUP_MSG = "with SCX $(SCX_VERSION), the X11 support."
  
! $(SCX_IMAGE): $(SCX_VM)
        ( \
        echo ",batch on"; \
--- 72,76 ----
  STARTUP_MSG = "with SCX $(SCX_VERSION), the X11 support."
  
! $(SCX_IMAGE): $(SCX_VM) $(SCM_FILES)
        ( \
        echo ",batch on"; \



<Prev in Thread] Current Thread [Next in Thread>
  • [Scsh-checkins] CVS: scx Makefile,1.2,1.3, Martin Gasbichler <=