| 1 : |
anton
|
1.29
|
#Copyright (C) 1995,1996,1997,1998,2000,2003,2007 Free Software Foundation, Inc. |
| 2 : |
anton
|
1.26
|
|
| 3 : |
|
|
#This file is part of Gforth. |
| 4 : |
|
|
|
| 5 : |
|
|
#Gforth is free software; you can redistribute it and/or |
| 6 : |
|
|
#modify it under the terms of the GNU General Public License |
| 7 : |
anton
|
1.28
|
#as published by the Free Software Foundation, either version 3 |
| 8 : |
anton
|
1.26
|
#of the License, or (at your option) any later version. |
| 9 : |
|
|
|
| 10 : |
|
|
#This program is distributed in the hope that it will be useful, |
| 11 : |
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 : |
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the |
| 13 : |
|
|
#GNU General Public License for more details. |
| 14 : |
|
|
|
| 15 : |
|
|
#You should have received a copy of the GNU General Public License |
| 16 : |
anton
|
1.28
|
#along with this program. If not, see http://www.gnu.org/licenses/. |
| 17 : |
anton
|
1.26
|
|
| 18 : |
jwilke
|
1.15
|
# We use the bash and shell and file utilities with dos |
| 19 : |
|
|
s%SHELL%# SHELL%g |
| 20 : |
pazsan
|
1.22
|
s% rm -rf% deltree%g |
| 21 : |
|
|
s% rm% del%g |
| 22 : |
|
|
s% cp -p% copy%g |
| 23 : |
jwilke
|
1.15
|
s% ln -s% cp%g |
| 24 : |
pazsan
|
1.22
|
s%\($(CP).*\)/%\1\\%g |
| 25 : |
|
|
s%\($(CP).*\)/%\1\\%g |
| 26 : |
jwilke
|
1.15
|
s%@mach_h@%386%g |
| 27 : |
pazsan
|
1.2
|
s%-pipe %%g |
| 28 : |
pazsan
|
1.1
|
s% ./gforth% gforth%g |
| 29 : |
pazsan
|
1.2
|
s%io.o %%g |
| 30 : |
pazsan
|
1.11
|
s%-DDEFAULTPATH=\\".*"%%g |
| 31 : |
pazsan
|
1.4
|
s%@kernel_fi@%kernl32l.fi%g |
| 32 : |
|
|
s%@KERNEL@%kernl16l.fi kernl16b.fi kernl32l.fi kernl32b.fi kernl64l.fi kernl64b.fi%g |
| 33 : |
pazsan
|
1.19
|
s%@LIBOBJS@%ecvt.o io.o strsig.o getopt.o getopt1.o select.o%g |
| 34 : |
pazsan
|
1.1
|
s%@host@%dos%g |
| 35 : |
pazsan
|
1.3
|
s%@CC@%gcc%g |
| 36 : |
pazsan
|
1.22
|
s%@GFORTH_EXE@%%g |
| 37 : |
|
|
s%@GFORTHDITC_EXE@%%g |
| 38 : |
pazsan
|
1.1
|
s%@INSTALL@%install-sh%g |
| 39 : |
|
|
s%@INSTALL_PROGRAM@%install-sh%g |
| 40 : |
|
|
s%@INSTALL_DATA@%install-sh%g |
| 41 : |
|
|
s%@LN_S@%copy%g |
| 42 : |
|
|
s%@CFLAGS@%-fforce-mem -fforce-addr -fomit-frame-pointer%g |
| 43 : |
pazsan
|
1.3
|
s%@ENGINE_FLAGS@%%g |
| 44 : |
pazsan
|
1.2
|
s%@DEFS@%%g |
| 45 : |
pazsan
|
1.1
|
s%@DEBUGFLAG@%%g |
| 46 : |
|
|
s%@LDFLAGS@%%g |
| 47 : |
|
|
s%@GCCLDFLAGS@%%g |
| 48 : |
|
|
s%@LIBS@%-lm -lpc%g |
| 49 : |
|
|
s%@prefix@%%g |
| 50 : |
|
|
s%@exec_prefix@%%g |
| 51 : |
pazsan
|
1.6
|
s%@srcdir@%.%g |
| 52 : |
pazsan
|
1.8
|
s%@LINK_KERNL@%-$(CP) kernl32l.fi kernel.fi%g |
| 53 : |
pazsan
|
1.6
|
s%@PATHSEP@%;%g |
| 54 : |
|
|
s%-fforce-mem -fforce-addr %%g |
| 55 : |
pazsan
|
1.18
|
s%echo ": version-string s\\" $(VERSION)\\" ;" > kernel/version.fs%$(CP) version.fs1 kernel\\version.fs%g |
| 56 : |
|
|
s%config.h.in ../config.status%%g |
| 57 : |
|
|
s%cd .. && CONFIG_FILES=$@ CONFIG_HEADERS=engine/config.h ./config.status%echo I hope you configured your system%g |
| 58 : |
pazsan
|
1.6
|
s%$(FORTHPATH)$(PATHSEP)%%g |
| 59 : |
pazsan
|
1.7
|
s%@FORTHSIZES@%%g |
| 60 : |
pazsan
|
1.22
|
s%if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else \(.*\) ; fi%\1%g |
| 61 : |
|
|
s%Makefile \(.*\) config.status%Makefile \1% |
| 62 : |
pazsan
|
1.9
|
s%--clear-dictionary%-c%g |
| 63 : |
pazsan
|
1.22
|
s%".$(PATHSEP)~+$(PATHSEP)$(srcdir)"%"~+"%g |
| 64 : |
jwilke
|
1.15
|
# s% -I$(srcdir)%%g |
| 65 : |
pazsan
|
1.20
|
s%GFORTHD=.*gforth.fi%gforthmi gforth.fi%g |
| 66 : |
anton
|
1.13
|
s%gforth-ditc%gforth-d%g |
| 67 : |
pazsan
|
1.22
|
s%gforth-fast%gforth-f%g |
| 68 : |
anton
|
1.13
|
s%engine-ditc%engine-d%g |
| 69 : |
pazsan
|
1.22
|
s%engine-fast%engine-f%g |
| 70 : |
anton
|
1.13
|
s%main-ditc%main-d%g |
| 71 : |
pazsan
|
1.22
|
s%main-fast%main-f%g |
| 72 : |
jwilke
|
1.15
|
s%@OSCLASS@%dos%g |
| 73 : |
pazsan
|
1.18
|
s%@machine@%386%g |
| 74 : |
anton
|
1.24
|
s%@PACKAGE_VERSION@%0.5.9%g |
| 75 : |
anton
|
1.25
|
s%@EXEEXT@%.exe%g |
| 76 : |
pazsan
|
1.22
|
s%--die-on-signal%-s%g |
| 77 : |
pazsan
|
1.19
|
s%cd engine && $(MAKE)%$(MAKE) -C engine%g |
| 78 : |
pazsan
|
1.20
|
s%\(CFLAGS2.*\) -O4%\1%g |
| 79 : |
|
|
s%gforthmi gforth\$%gforthmi.bat gforth\$%g |
| 80 : |
pazsan
|
1.21
|
s%engine/Makefile configure%engine/Makefile%g |
| 81 : |
pazsan
|
1.22
|
s%$(exec_prefix)/bin%%g |
| 82 : |
|
|
s%@asm_fs@%./arch/386/asm.fs%g |
| 83 : |
|
|
s%@disasm_fs@%./arch/386/disasm.fs%g |