File:  [gforth] / gforth / engine / Makefile.in
Revision 1.13: download - view: text, annotated - select for diffs
Tue Dec 8 22:03:01 1998 UTC (25 years, 4 months ago) by anton
Branches: MAIN
CVS tags: HEAD
updated dates in copyright messages
inserted copyright messages in most files that did not have them
removed outdated files engine/32bit.h engine/strsig.c

    1: #Makefile for the C part of Gforth
    2: 
    3: #Copyright (C) 1995,1996,1997,1998 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 2
   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, write to the Free Software
   19: #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   20: 
   21: # ------------- gforth version
   22: 
   23: VERSION =@VERSION@
   24: DOSVERSION=`echo $VERSION|sed 's/\.//g'`
   25: EXE=@EXE@
   26: 
   27: # ------------- System specific variables
   28: 
   29: machine=@machine@
   30: kernel_fi=@kernel_fi@
   31: include_fi=gforth.fi
   32: # this is the type of machine
   33: # used to extend the include path with ./arch/$machine
   34: # so we could include a machine specific
   35: # machine.h file
   36: 
   37: PATHSEP = @PATHSEP@
   38: 
   39: osclass = @OSCLASS@
   40: 
   41: # ------------- Utility programs
   42: 
   43: SHELL	= /bin/sh
   44: RM	= rm
   45: RMTREE	= rm -rf
   46: CP	= cp
   47: TAR	= tar cf -
   48: GCC	= @CC@
   49: CC	= $(GCC)
   50: STRIP	= strip
   51: 
   52: FORTHPATH = .$(PATHSEP)$(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)
   53: 
   54: # ------------	Install Directorys
   55: 
   56: VPATH = @srcdir@
   57: prefix = @prefix@
   58: exec_prefix = @exec_prefix@
   59: srcdir = @srcdir@
   60: bindir = $(exec_prefix)/bin
   61: #read-only architecture-independent files
   62: datadir = $(prefix)/share
   63: #read-only architecture-dependent non-ascii files
   64: libdir = $(prefix)/lib
   65: infodir = $(prefix)/info
   66: mandir = $(prefix)/man
   67: man1dir= $(mandir)/man1
   68: man1ext= .1
   69: 
   70: # ------------- Compiler Flags
   71: 
   72: XCFLAGS	= @CFLAGS@
   73: XDEFINES = @DEFS@
   74: SWITCHES = $(XCFLAGS) $(XDEFINES)
   75: ENGINE_FLAGS = @ENGINE_FLAGS@ -fno-defer-pop -fcaller-saves
   76: DEBUGFLAG = @DEBUGFLAG@
   77: CFLAGS	= $(DEBUGFLAG) -I$(srcdir)/../arch/$(machine) -O4 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(FORTHPATH)\"
   78: FORTHKFLAGS= --die-on-signal -p ..$(PATHSEP)$(srcdir) -i ../$(kernel_fi)
   79: FORTHK	= ../gforth $(FORTHKFLAGS)
   80: 
   81: #John Wavrik should use -Xlinker -N to get a writable text (executable)
   82: XLDFLAGS = @LDFLAGS@
   83: LDFLAGS =  $(DEBUGFLAG) $(XLDFLAGS)
   84: LDLIBS  = @LIBS@
   85: 
   86: AOBJECTS = io.o memcmpc.o @LIBOBJS@
   87: 
   88: OBJECTS = engine.o main.o
   89: OBJECTS_DITC =  engine-ditc.o main-ditc.o
   90: OBJECTS_FI =  engine.o main-fi.o
   91: 
   92: # In engine subdirectory there are (or should be) only files that belong to
   93: # our engine, so we can make life easy
   94: DEPS =  config.h *.h ../arch/$(machine)/*.[h]
   95: ENGINE_DEPS = engine.c $(DEPS) prim_lab.i prim.i
   96: 
   97: gforth$(EXE):	$(OBJECTS) $(AOBJECTS)
   98: 	$(GCC) $(LDFLAGS) $(OBJECTS) $(AOBJECTS) $(LDLIBS) -o $@
   99: 
  100: gforth-ditc$(EXE): $(OBJECTS_DITC) $(AOBJECTS)
  101: 	$(GCC) $(LDFLAGS) $(OBJECTS_DITC) $(AOBJECTS) $(LDLIBS) -o $@
  102: 
  103: gforth-fi$(EXE):	$(OBJECTS_FI) $(AOBJECTS)
  104: 	$(GCC) $(LDFLAGS) $(OBJECTS_FI) $(AOBJECTS) $(LDLIBS) -o $@
  105: 
  106: engine.s:	$(ENGINE_DEPS)
  107: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S engine.c
  108: 
  109: engine.o:	$(ENGINE_DEPS)
  110: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c engine.c -o $@
  111: 
  112: engine-ditc.o:	$(ENGINE_DEPS)
  113: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -DDOUBLY_INDIRECT -o $@ -c engine.c
  114: 
  115: main.o:		main.c $(DEPS) 
  116: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -o $@ -c main.c
  117: 
  118: main-ditc.o:	main.c $(DEPS)
  119: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -DDOUBLY_INDIRECT -o $@ -c main.c
  120: 
  121: main-fi.o:	main.c $(DEPS)
  122: 		$(GCC) $(CFLAGS) $(ENGINE_FLAGS) -DINCLUDE_IMAGE -o $@ -c main.c
  123: 
  124: engine:		$(OBJECTS) $(OBJECTS0) ;
  125: 
  126: engine_ditc:	$(OBJECTS_DITC) $(OBJECTS0) ;
  127: 
  128: #NeXTstep hack
  129: 
  130: termios.o:	/usr/lib/libposix.a
  131: 	ar x /usr/lib/libposix.a termios.o
  132: 
  133: #duplicated rules to avoid too many recursive make invocations
  134: 
  135: prim.i:		../prim.b ../prims2x.fs
  136: 		$(FORTHK) prims2x.fs -e "s\" ../prim.b\" ' output-c process-file bye" >$@-
  137: 		$(CP) $@- $@
  138: 		$(RM) $@-
  139: 
  140: prim_lab.i:	../prim.b ../prims2x.fs
  141: 		$(FORTHK) prims2x.fs -e "s\" ../prim.b\" ' output-label process-file bye" >$@-
  142: 		$(CP) $@- $@
  143: 		$(RM) $@-
  144: 
  145: config.h:	stamp-h
  146: stamp-h:	config.h.in ../config.status
  147: 		cd .. && CONFIG_FILES=$@ CONFIG_HEADERS=engine/config.h ./config.status
  148: 		echo timestamp > stamp-h
  149: 
  150: image.c:	../fi2c.fs ../$(include_fi)
  151: 		$(FORTHK) fi2c.fs -e "s\" ../$(include_fi)\" fi2c bye" >$@
  152: 
  153: ../$(include_fi):	FORCE
  154: 		cd .. && $(MAKE) $(include_fi)
  155: 
  156: #phony targets depend on FORCE; this is more portable than .PHONY
  157: FORCE:
  158: 

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