| 1 : |
anton
|
1.1
|
#Makefile for vmgen example |
| 2 : |
|
|
|
| 3 : |
anton
|
1.15
|
#Copyright (C) 2001,2003,2007,2008 Free Software Foundation, Inc. |
| 4 : |
anton
|
1.1
|
|
| 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 : |
anton
|
1.12
|
#as published by the Free Software Foundation, either version 3 |
| 10 : |
anton
|
1.1
|
#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 : |
anton
|
1.12
|
#along with this program; if not, see http://www.gnu.org/licenses/. |
| 19 : |
anton
|
1.1
|
|
| 20 : |
|
|
LEX=flex -l |
| 21 : |
anton
|
1.11
|
YACC=bison -y |
| 22 : |
anton
|
1.1
|
#YACC=yacc |
| 23 : |
|
|
VMGEN=vmgen |
| 24 : |
anton
|
1.4
|
#GCC=gcc -g -Wall |
| 25 : |
anton
|
1.3
|
GCC=gcc -O3 -fomit-frame-pointer -Wall |
| 26 : |
anton
|
1.1
|
CC=$(GCC) |
| 27 : |
anton
|
1.8
|
#M4=m4 -s #recommended if supported |
| 28 : |
|
|
M4=m4 |
| 29 : |
anton
|
1.6
|
OBJECTS_MINI=mini.tab.o support.o peephole.o profile.o disasm.o engine.o engine-debug.o |
| 30 : |
anton
|
1.1
|
|
| 31 : |
anton
|
1.6
|
mini: $(OBJECTS_MINI) |
| 32 : |
|
|
$(CC) $(OBJECTS_MINI) -o $@ |
| 33 : |
anton
|
1.1
|
|
| 34 : |
|
|
lex.yy.c: mini.l |
| 35 : |
|
|
$(LEX) mini.l |
| 36 : |
|
|
|
| 37 : |
|
|
mini.tab.c: mini.y |
| 38 : |
anton
|
1.11
|
$(YACC) mini.y && mv y.tab.c $@ |
| 39 : |
anton
|
1.1
|
|
| 40 : |
|
|
mini-vm.i mini-disasm.i mini-gen.i mini-labels.i mini-profile.i mini-peephole.i: mini.vmg |
| 41 : |
|
|
$(VMGEN) mini.vmg |
| 42 : |
|
|
|
| 43 : |
anton
|
1.4
|
mini.vmg: mini-inst.vmg mini-super.vmg |
| 44 : |
anton
|
1.8
|
$(M4) mini-inst.vmg >$@ |
| 45 : |
anton
|
1.4
|
|
| 46 : |
anton
|
1.1
|
mini.tab.o: mini.tab.c mini-gen.i lex.yy.c mini.h |
| 47 : |
|
|
|
| 48 : |
|
|
support.o: support.c mini.h |
| 49 : |
|
|
|
| 50 : |
|
|
peephole.o: peephole.c mini-peephole.i mini.h |
| 51 : |
|
|
|
| 52 : |
|
|
profile.o: profile.c mini-profile.i mini.h |
| 53 : |
|
|
|
| 54 : |
|
|
disasm.o: disasm.c mini-disasm.i mini.h |
| 55 : |
|
|
|
| 56 : |
|
|
engine.o: engine.c mini-vm.i mini-labels.i mini.h |
| 57 : |
|
|
|
| 58 : |
|
|
engine-debug.o: engine.c mini-vm.i mini-labels.i mini.h |
| 59 : |
anton
|
1.9
|
$(CC) -DVM_DEBUG -DVM_PROFILING -Dengine=engine_debug -c -o $@ engine.c |
| 60 : |
anton
|
1.1
|
|
| 61 : |
|
|
clean: |
| 62 : |
anton
|
1.14
|
rm -f *.o mini mini-*.i lex.yy.c mini.tab.c mini.vmg |
| 63 : |
anton
|
1.2
|
|
| 64 : |
|
|
check: mini |
| 65 : |
anton
|
1.7
|
./mini test.mini | tr -d '\015' | diff - test.out |
| 66 : |
anton
|
1.5
|
|
| 67 : |
|
|
checkall: |
| 68 : |
anton
|
1.14
|
for i in 1 3 5 8 9 10; do make clean; echo $$i; make check VMGEN=../vmgen CC="gcc -O3 -fomit-frame-pointer -Wall -DTHREADING_SCHEME=$$i"; echo $$i >>xxx-bench; \time mini fib.mini 2>>xxx-bench; done; cat xxx-bench; rm xxx-bench |
| 69 : |
anton
|
1.4
|
|
| 70 : |
|
|
#make profiles |
| 71 : |
|
|
%.prof: %.mini mini |
| 72 : |
|
|
./mini -p $< 2>$@ |