File:  [gforth] / gforth / engine / Makefile.in
Revision 1.86: download - view: text, annotated - select for diffs
Thu Nov 17 22:29:17 2011 UTC (12 years, 4 months ago) by pazsan
Branches: MAIN
CVS tags: HEAD
moved kernel_fi install place to libdir

    1: #Makefile for the C part of Gforth
    2: 
    3: #Copyright (C) 1995,1996,1997,1998,2000,2003,2006,2007,2008,2009 Free Software Foundation, Inc.
    4: 
    5: #This file is part of Gforth.
    6: 
    7: #Gforth is free software; you can redistribute it and/or
    8: #modify it under the terms of the GNU General Public License
    9: #as published by the Free Software Foundation, either version 3
   10: #of the License, or (at your option) any later version.
   11: 
   12: #This program is distributed in the hope that it will be useful,
   13: #but WITHOUT ANY WARRANTY; without even the implied warranty of
   14: #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the
   15: #GNU General Public License for more details.
   16: 
   17: #You should have received a copy of the GNU General Public License
   18: #along with this program. If not, see http://www.gnu.org/licenses/.
   19: 
   20: # ------------- gforth version
   21: 
   22: VERSION =@PACKAGE_VERSION@
   23: DOSVERSION=`echo $VERSION|sed 's/\.//g'`
   24: EXE=@EXEEXT@
   25: 
   26: # ------------- System specific variables
   27: 
   28: machine=@machine@
   29: kernel_fi = @kernel_fi@
   30: include_fi = @include_fi@
   31: # this is the type of machine
   32: # used to extend the include path with ./arch/$machine
   33: # so we could include a machine specific
   34: # machine.h file
   35: 
   36: PATHSEP = @PATHSEP@
   37: 
   38: EC = @EC@
   39: 
   40: # ------------- Utility programs
   41: 
   42: SHELL	= /bin/sh
   43: RM	= rm
   44: RMTREE	= rm -rf
   45: CP	= cp -p
   46: TAR	= tar cf -
   47: GCC	= @CC@
   48: BOOTFORTH	= ../preforth
   49: CC	= $(GCC)
   50: LD	= $(GCC:gcc=ld)
   51: AS	= $(GCC:gcc=as)
   52: STRIP	= strip
   53: GCCLD	= @GCC_LD@
   54: 
   55: FORTHPATH = .$(PATHSEP)$(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)
   56: 
   57: # ------------  Source and Build directories
   58: 
   59: top_srcdir = @top_srcdir@
   60: top_builddir = @top_builddir@
   61: 
   62: # ------------	Install directories
   63: 
   64: VPATH = @srcdir@
   65: prefix = @prefix@
   66: exec_prefix = @exec_prefix@
   67: srcdir = @srcdir@
   68: bindir = @bindir@
   69: #read-only architecture-independent files
   70: datadir = @datadir@
   71: #read-only architecture-dependent non-ascii files
   72: libdir = @libdir@
   73: infodir = @infodir@
   74: mandir = @mandir@
   75: man1dir= $(mandir)/man1
   76: man1ext= .1
   77: 
   78: # ------------- ltdl variables
   79: 
   80: LTDLDEPS = @LTDLDEPS@
   81: LTDLINCL = @LTDLINCL@
   82: LIBLTDL  = @LIBLTDL@
   83: 
   84: # ------------- Compiler Flags
   85: 
   86: XCFLAGS	= @CFLAGS@
   87: XDEFINES = @DEFS@
   88: SWITCHES = $(XCFLAGS) $(XDEFINES) $(OPTDEFINES)
   89: #use -fno-inline to avoid register problems with asinh, atanh on gcc-3.3 on 386
   90: ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves -fno-inline
   91: DEBUGFLAG = @DEBUGFLAG@
   92: CFLAGS	= $(DEBUGFLAG) -I$(srcdir)/../arch/$(machine) -I. -Wall $(SWITCHES) -DDEFAULTPATH='"$(FORTHPATH)"' $(LTDLINCL)
   93: CPPFLAGS=@CPPFLAGS@
   94: FORTHKFLAGS= --die-on-signal -p "..$(PATHSEP)$(srcdir)" -i ../$(kernel_fi)
   95: FORTHK	= ../gforth $(FORTHKFLAGS)
   96: FORTH	= $(BOOTFORTH) --die-on-signal
   97: 
   98: #John Wavrik should use -Xlinker -N to get a writable text (executable)
   99: XLDFLAGS = @LDFLAGS@
  100: LDFLAGS =  $(DEBUGFLAG) $(XLDFLAGS)
  101: LDLIBS  = @LIBS@ @LTDL_LDLIBS@
  102: 
  103: AOBJECTS = @signals_o@ support$(OPT).o @LIBOBJS@ $(OPTOBJECTS)
  104: 
  105: @MAKEINC@
  106: 
  107: OBJECTS = engine$(OPT).o @engine2@ main$(OPT).o
  108: OBJECTS_NATIVE = engine-native$(OPT).o engine-native2$(OPT).o engine-native3$(OPT).o main-native$(OPT).o
  109: OBJECTS_FAST = engine-fast$(OPT).o @engine_fast2@ main-fast$(OPT).o
  110: OBJECTS_ITC = engine-itc$(OPT).o main-itc$(OPT).o
  111: OBJECTS_DITC = engine-ditc$(OPT).o main-ditc$(OPT).o
  112: OBJECTS_PROF = engine-prof$(OPT).o main-prof$(OPT).o
  113: OBJECTS_FI =  engine$(OPT).o main-fi$(OPT).o
  114: 
  115: # In engine subdirectory there are (or should be) only files that belong to
  116: # our engine, so we can make life easy
  117: DEPS =  config.h forth.h io.h $(srcdir)/../arch/$(machine)/*.[h]
  118: ENGINE_DEPS = engine.c $(DEPS) prim_lab.i prim.i @image_i@ fnmatch.h threaded.h
  119: MAIN_DEPS = main.c $(DEPS) prim_superend.i prim_num.i prim_grp.i costs.i super2.i
  120: ENGINE_FAST_DEPS = engine.c $(DEPS) prim_lab-fast.i prim-fast.i fnmatch.h threaded.h
  121: MAIN_FAST_DEPS = main.c $(DEPS) prim_superend-fast.i prim_num-fast.i prim_grp-fast.i costs-fast.i super2-fast.i
  122: 
  123: COMPILE.c = $(GCC) $(CFLAGS) $(CPPFLAGS) -c # simulate BSD sys.mk
  124: 
  125: #some makes don't do the -o $@ correctly, so we help them
  126: .c.o:
  127: 	$(COMPILE.c) -o $@ $<
  128: 
  129: .s.o:
  130: 	$(COMPILE.c) -o $@ $<
  131: 
  132: support$(OPT).o: support.c config.h forth.h longlong.h
  133: 	$(COMPILE.c) -o $@ $(srcdir)/support.c
  134: 
  135: strtol.o: strtol.c ansidecl.h
  136: 
  137: fnmatch.o: fnmatch.c fnmatch.h
  138: 
  139: getopt1.o: getopt1.c getopt.h
  140: 
  141: getopt.o: getopt.c getopt.h
  142: 
  143: gforth$(OPT)$(EC)$(EXE):	$(OBJECTS) $(AOBJECTS) $(LTDLDEPS)
  144: 	$(GCCLD) $(LDFLAGS) $(OBJECTS) $(AOBJECTS) $(LDLIBS) -o $@
  145: 
  146: gforth-native$(OPT)$(EC)$(EXE):	$(OBJECTS_NATIVE) $(AOBJECTS) $(LTDLDEPS)
  147: 	$(GCCLD) $(LDFLAGS) $(OBJECTS_NATIVE) $(AOBJECTS) $(LDLIBS) -o $@
  148: 
  149: gforth-fast$(OPT)$(EC)$(EXE):	$(OBJECTS_FAST) $(AOBJECTS) $(LTDLDEPS)
  150: 	$(GCCLD) $(LDFLAGS) $(OBJECTS_FAST) $(AOBJECTS) $(LDLIBS) -o $@
  151: 
  152: gforth-itc$(OPT)$(EC)$(EXE):	$(OBJECTS_ITC) $(AOBJECTS) $(LTDLDEPS)
  153: 	$(GCCLD) $(LDFLAGS) $(OBJECTS_ITC) $(AOBJECTS) $(LDLIBS) -o $@
  154: 
  155: gforth-ditc$(OPT)$(EC)$(EXE): $(OBJECTS_DITC) $(AOBJECTS) $(LTDLDEPS)
  156: 	$(GCCLD) $(LDFLAGS) $(OBJECTS_DITC) $(AOBJECTS) $(LDLIBS) -o $@
  157: 
  158: gforth-prof$(OPT)$(EC)$(EXE): $(OBJECTS_PROF) $(AOBJECTS) $(LTDLDEPS) profile$(OPT).o
  159: 	$(GCCLD) $(LDFLAGS) $(OBJECTS_PROF) $(AOBJECTS) profile$(OPT).o $(LDLIBS) -o $@
  160: 
  161: gforth-fi$(OPT)$(EC)$(EXE):	$(OBJECTS_FI) $(AOBJECTS) $(LTDLDEPS)
  162: 	$(GCCLD) $(LDFLAGS) $(OBJECTS_FI) $(AOBJECTS) $(LDLIBS) -o $@
  163: 
  164: engine.s:	$(ENGINE_FAST_DEPS)
  165: 		$(GCC) $(CFLAGS) $(CPPFLAGS) $(ENGINE_FLAGS) -S $(srcdir)/engine.c
  166: 
  167: engine$(OPT).o:	$(ENGINE_DEPS)
  168: 		$(COMPILE.c) $(ENGINE_FLAGS) -DGFORTH_DEBUGGING -o $@ $(srcdir)/engine.c
  169: 
  170: engine2$(OPT).o:	$(ENGINE_DEPS)
  171: 		$(COMPILE.c) $(ENGINE_FLAGS) -DGFORTH_DEBUGGING -DENGINE=2 -o $@ $(srcdir)/engine.c
  172: 
  173: engine-native$(OPT).o:$(ENGINE_FAST_DEPS)
  174: 		$(COMPILE.c) $(ENGINE_FLAGS) -DNO_IP -o $@ $(srcdir)/engine.c
  175: 
  176: engine-native2$(OPT).o:$(ENGINE_FAST_DEPS)
  177: 		$(COMPILE.c) $(ENGINE_FLAGS) -DNO_IP -DENGINE=2 -o $@ $(srcdir)/engine.c
  178: 
  179: engine-native3$(OPT).o:$(ENGINE_FAST_DEPS)
  180: 		$(COMPILE.c) $(ENGINE_FLAGS) -DNO_IP -DENGINE=3 -o $@ $(srcdir)/engine.c
  181: 
  182: engine-fast$(OPT).o:	$(ENGINE_FAST_DEPS)
  183: 		$(COMPILE.c) $(ENGINE_FLAGS) -o $@ $(srcdir)/engine.c
  184: 
  185: engine-fast2$(OPT).o:	$(ENGINE_FAST_DEPS)
  186: 		$(COMPILE.c) $(ENGINE_FLAGS) -DENGINE=2 -o $@ $(srcdir)/engine.c
  187: 
  188: engine-itc$(OPT).o:	$(ENGINE_DEPS)
  189: 		$(COMPILE.c) $(ENGINE_FLAGS) -DINDIRECT_THREADED -DGFORTH_DEBUGGING -o $@ $(srcdir)/engine.c
  190: 
  191: engine-ditc$(OPT).o:	$(ENGINE_DEPS)
  192: 		$(COMPILE.c) $(ENGINE_FLAGS) -DDOUBLY_INDIRECT -o $@ $(srcdir)/engine.c
  193: 
  194: engine-prof$(OPT).o:	$(ENGINE_DEPS)
  195: 		$(COMPILE.c) $(ENGINE_FLAGS) -DVM_PROFILING -o $@ $(srcdir)/engine.c
  196: 
  197: main$(OPT).o:		$(MAIN_DEPS) 
  198: 		$(COMPILE.c) -DGFORTH_DEBUGGING @no_dynamic@ -o $@ $(srcdir)/main.c
  199: 
  200: main-native$(OPT).o:	$(MAIN_FAST_DEPS) 
  201: 		$(COMPILE.c) -DNO_IP -o $@ $(srcdir)/main.c
  202: 
  203: main-fast$(OPT).o:	$(MAIN_FAST_DEPS) 
  204: 		$(COMPILE.c) -o $@ $(srcdir)/main.c
  205: 
  206: main-itc$(OPT).o:	$(MAIN_DEPS) 
  207: 		$(COMPILE.c) -DINDIRECT_THREADED -DGFORTH_DEBUGGING -o $@ $(srcdir)/main.c
  208: 
  209: main-ditc$(OPT).o:	$(MAIN_DEPS)
  210: 		$(COMPILE.c) -DDOUBLY_INDIRECT -o $@ $(srcdir)/main.c
  211: 
  212: main-prof$(OPT).o:	$(MAIN_DEPS)
  213: 		$(COMPILE.c) -DVM_PROFILING -o $@ $(srcdir)/main.c
  214: 
  215: main-fi$(OPT).o:	$(MAIN_DEPS)
  216: 		$(COMPILE.c) -DINCLUDE_IMAGE -o $@ $(srcdir)/main.c
  217: 
  218: peephole$(OPT).o:	peephole.c peephole.i $(DEPS)
  219: 		$(COMPILE.c) -o $@ $(srcdir)/peephole.c
  220: 
  221: profile$(OPT).o:	profile.c profile.i $(DEPS)
  222: 		$(COMPILE.c) -o $@ $(srcdir)/profile.c
  223: 
  224: #The next two rules seem to be superfluous:
  225: 
  226: # engine:		$(OBJECTS) $(OBJECTS0) ;
  227: 
  228: # engine_ditc:	$(OBJECTS_DITC) $(OBJECTS0) ;
  229: 
  230: #NeXTstep hack
  231: 
  232: termios.o:	/usr/lib/libposix.a
  233: 	ar x /usr/lib/libposix.a termios.o
  234: 
  235: config.h:	stamp-h
  236: stamp-h:	config.h.in ../config.status ../stamp-h.in
  237: 		cd .. && CONFIG_FILES=$@ CONFIG_HEADERS=engine/config.h ./config.status
  238: 		echo timestamp > stamp-h
  239: 
  240: Makefile: Makefile.in ../config.status ../configure.in
  241: 	cd .. && $(MAKE) engine/Makefile.in
  242: 
  243: image.i:	../fi2c.fs ../$(include_fi)
  244: 		$(BOOTFORTH) ../fi2c.fs -e "s\" ../$(include_fi)\" fi2c bye" >$@
  245: 
  246: ../$(include_fi):	FORCE
  247: 		cd .. && $(MAKE) $(include_fi)
  248: 
  249: #phony targets depend on FORCE; this is more portable than .PHONY
  250: FORCE:
  251: 

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