Annotation of gforth/engine/Makefile.in, revision 1.88

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

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