Diff for /gforth/engine/Makefile.in between versions 1.74 and 1.75

version 1.74, 2008/04/19 19:15:14 version 1.75, 2008/04/20 15:33:47
Line 56  GCCLD = @GCC_LD@ Line 56  GCCLD = @GCC_LD@
   
 FORTHPATH = .$(PATHSEP)$(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)  FORTHPATH = .$(PATHSEP)$(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)
   
 # ------------  Install Directorys  # ------------  Source and Build directories
   
   top_srcdir = @top_srcdir@
   top_builddir = @top_builddir@
   
   # ------------  Install directories
   
 VPATH = @srcdir@  VPATH = @srcdir@
 prefix = @prefix@  prefix = @prefix@
Line 72  mandir = $(prefix)/man Line 77  mandir = $(prefix)/man
 man1dir= $(mandir)/man1  man1dir= $(mandir)/man1
 man1ext= .1  man1ext= .1
   
   # ------------- ltdl variables
   
   LTDLDEPS = @LTDLDEPS@
   LTDLINCL = @LTDLINCL@
   LIBLTDL  = @LIBLTDL@
   
 # ------------- Compiler Flags  # ------------- Compiler Flags
   
 XCFLAGS = @CFLAGS@  XCFLAGS = @CFLAGS@
Line 80  SWITCHES = $(XCFLAGS) $(XDEFINES) $(OPTD Line 91  SWITCHES = $(XCFLAGS) $(XDEFINES) $(OPTD
 #use -fno-inline to avoid register problems with asinh, atanh on gcc-3.3 on 386  #use -fno-inline to avoid register problems with asinh, atanh on gcc-3.3 on 386
 ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves -fno-inline  ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves -fno-inline
 DEBUGFLAG = @DEBUGFLAG@  DEBUGFLAG = @DEBUGFLAG@
 CFLAGS  = $(DEBUGFLAG) -I$(srcdir)/../arch/$(machine) -I. -Wall $(SWITCHES) -DDEFAULTPATH='"$(FORTHPATH)"'  CFLAGS  = $(DEBUGFLAG) -I$(srcdir)/../arch/$(machine) -I. -Wall $(SWITCHES) -DDEFAULTPATH='"$(FORTHPATH)"' $(LTDLINCL)
 CFLAGS2 = $(DEBUGFLAG) -I$(srcdir)/../arch/$(machine) -I. -Wall $(SWITCHES) -DDEFAULTPATH='"$(FORTHPATH)"'  CFLAGS2 = $(DEBUGFLAG) -I$(srcdir)/../arch/$(machine) -I. -Wall $(SWITCHES) -DDEFAULTPATH='"$(FORTHPATH)"' $(LTDLINCL)
 CPPFLAGS=@CPPFLAGS@  CPPFLAGS=@CPPFLAGS@
 FORTHKFLAGS= --die-on-signal -p "..$(PATHSEP)$(srcdir)" -i ../$(kernel_fi)  FORTHKFLAGS= --die-on-signal -p "..$(PATHSEP)$(srcdir)" -i ../$(kernel_fi)
 FORTHK  = ../gforth $(FORTHKFLAGS)  FORTHK  = ../gforth $(FORTHKFLAGS)
Line 90  FORTH = $(BOOTFORTH) --die-on-signal Line 101  FORTH = $(BOOTFORTH) --die-on-signal
 #John Wavrik should use -Xlinker -N to get a writable text (executable)  #John Wavrik should use -Xlinker -N to get a writable text (executable)
 XLDFLAGS = @LDFLAGS@  XLDFLAGS = @LDFLAGS@
 LDFLAGS =  $(DEBUGFLAG) $(XLDFLAGS)  LDFLAGS =  $(DEBUGFLAG) $(XLDFLAGS)
 LDLIBS  = @LIBS@  LDLIBS  = @LIBS@ @LTDL_LDLIBS@
   
 AOBJECTS = @signals_o@ support$(OPT).o @LIBOBJS@ $(OPTOBJECTS)  AOBJECTS = @signals_o@ support$(OPT).o @LIBOBJS@ $(OPTOBJECTS)
   
Line 252  image.i: ../fi2c.fs ../$(include_fi) Line 263  image.i: ../fi2c.fs ../$(include_fi)
 ../$(include_fi):       FORCE  ../$(include_fi):       FORCE
                 cd .. && $(MAKE) $(include_fi)                  cd .. && $(MAKE) $(include_fi)
   
   #build ltdl
   $(LTDLDEPS):
           cd ../libltdl && $(MAKE)
   
 #phony targets depend on FORCE; this is more portable than .PHONY  #phony targets depend on FORCE; this is more portable than .PHONY
 FORCE:  FORCE:
   

Removed from v.1.74  
changed lines
  Added in v.1.75


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>