aboutsummaryrefslogtreecommitdiffstats
path: root/translate/ghdldrv/Makefile
blob: dc1b07df6f404fd8b482f346b77c7de46a0a1d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#  -*- Makefile -*- for the GHDL drivers.
#  Copyright (C) 2002, 2003, 2004, 2005 Tristan Gingold
#
#  GHDL is free software; you can redistribute it and/or modify it under
#  the terms of the GNU General Public License as published by the Free
#  Software Foundation; either version 2, or (at your option) any later
#  version.
#
#  GHDL is distributed in the hope that it will be useful, but WITHOUT ANY
#  WARRANTY; without even the implied warranty of MERCHANTABILITY or
#  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
#  for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with GCC; see the file COPYING.  If not, write to the Free
#  Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#  02111-1307, USA.
GNATFLAGS=-gnaty3befhkmr -gnata -gnatwu -gnatwl -aI../..  -aI.. -aI../grt -aO.. -g -gnatf
GRT_FLAGS=-g

# Optimize, do not forget to use MODE=--genfast for iirs.adb.
#GNATFLAGS+=-O -gnatn
#GRT_FLAGS+=-O

# Profiling.
#GNATFLAGS+=-pg -gnatn -O
#GRT_FLAGS+=-pg -O

GNAT_BARGS=-bargs -E

#GNAT_LARGS= -static
all: ghdl_mcode

target=i686-pc-linux-gnu
GRTSRCDIR=../grt
include $(GRTSRCDIR)/Makefile.inc

ghdl_mcode: default_pathes.ads $(GRT_ADD_OBJS) mmap_binding.o force 
	gnatmake -aI../../ortho/mcode $(GNATFLAGS) ghdl_mcode $(GNAT_BARGS) -largs mmap_binding.o $(GNAT_LARGS) $(GRT_ADD_OBJS) $(GRT_EXTRA_LIB) 

mmap_binding.o: ../../ortho/mcode/mmap_binding.c
	$(CC) -c -g -o $@ $<

ghdl_gcc: default_pathes.ads force 
	gnatmake $(GNATFLAGS) ghdl_gcc $(GNAT_BARGS) -largs $(GNAT_LARGS)

ghdl_simul: default_pathes.ads force
	gnatmake -aI../../simulate $(GNATFLAGS) ghdl_simul $(GNAT_BARGS) -largs $(GNAT_LARGS)

default_pathes.ads: default_pathes.ads.in Makefile
	curdir=`cd ..; pwd`; \
	sed -e "s%@COMPILER_GCC@%$$curdir/ghdl1-gcc%" \
	 -e "s%@COMPILER_DEBUG@%$$curdir/ghdl1-debug%" \
	 -e "s%@COMPILER_MCODE@%$$curdir/ghdl1-mcode%" \
	 -e "s%@POST_PROCESSOR@%$$curdir/../ortho/oread/oread-gcc%" \
	 -e "s%@PREFIX@%$$curdir/lib/%" < $< > $@

bootstrap.old: force
	$(RM) ../../libraries/std-obj87.cf
	$(MAKE) -C ../../libraries EXT=obj \
	  ANALYSE="$(PWD)/ghdl -a -g" std-obj87.cf
	$(RM) ../../libraries/std-obj93.cf
	$(MAKE) -C ../../libraries EXT=obj \
	  ANALYSE="$(PWD)/ghdl -a -g" std-obj93.cf

LIB_CFLAGS=-g -O2

LIB93_DIR:=../lib/v93
LIB87_DIR:=../lib/v87
LIBSRC_DIR:=../../libraries
REL_DIR:=../..
ANALYZE:=../../../ghdldrv/ghdl -a $(LIB_CFLAGS)
LN=ln -s
CP=cp

$(LIB87_DIR):
	[ -d ../lib ] || mkdir ../lib
	[ -d $(LIB87_DIR) ] || mkdir $(LIB87_DIR)

$(LIB93_DIR):
	[ -d ../lib ] || mkdir ../lib
	[ -d $(LIB93_DIR) ] || mkdir $(LIB93_DIR)

include ../../libraries/Makefile.inc

GHDL1=../ghdl1-gcc
$(LIB87_DIR)/std/std_standard.o: $(GHDL1)
	$(GHDL1) --std=87 -quiet $(LIB_CFLAGS) -o std_standard.s \
	 --compile-standard
	$(CC) -c -o $@ std_standard.s
	$(RM) std_standard.s

$(LIB93_DIR)/std/std_standard.o: $(GHDL1)
	$(GHDL1) --std=93 -quiet $(LIB_CFLAGS)  -o std_standard.s \
	 --compile-standard
	$(CC) -c -o $@ std_standard.s
	$(RM) std_standard.s

install.v93: std.v93 ieee.v93 synopsys.v93 mentor.v93
install.v87: std.v87 ieee.v87 synopsys.v87

install.standard: $(LIB93_DIR)/std/std_standard.o \
 $(LIB87_DIR)/std/std_standard.o

install.all: install.v87 install.v93 install.standard
install.mcode: install.v87 install.v93

clean: force
	$(RM) -f *.o *.ali ghdl_gcc ghdl_mcode 
	$(RM) -f b~*.ad? *~ default_pathes.ads

force:

.PHONY: force clean