1999-04-16 01:35:26 +00:00
|
|
|
# Makefile template for Configure for the arm sim library.
|
2015-01-01 09:32:14 +00:00
|
|
|
# Copyright 1995-2015 Free Software Foundation, Inc.
|
1999-04-16 01:35:26 +00:00
|
|
|
# Written by Cygnus Support.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-08-24 14:30:15 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
1999-04-16 01:35:26 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-24 14:30:15 +00:00
|
|
|
#
|
1999-04-16 01:35:26 +00:00
|
|
|
# This program 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.
|
2007-08-24 14:30:15 +00:00
|
|
|
#
|
1999-04-16 01:35:26 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-24 14:30:15 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
## COMMON_PRE_CONFIG_FRAG
|
|
|
|
|
2015-07-02 15:19:09 +00:00
|
|
|
SIM_EXTRA_CFLAGS = -DMODET
|
|
|
|
SIM_EXTRA_LIBS = -lm
|
2015-03-30 07:05:57 +00:00
|
|
|
|
|
|
|
SIM_OBJS = \
|
2015-04-12 09:47:39 +00:00
|
|
|
wrapper.o \
|
2015-03-30 07:05:57 +00:00
|
|
|
$(SIM_NEW_COMMON_OBJS) \
|
|
|
|
sim-hload.o \
|
|
|
|
armemu26.o armemu32.o arminit.o armos.o armsupp.o \
|
2015-04-12 09:47:39 +00:00
|
|
|
armvirt.o bag.o thumbemu.o \
|
2015-03-30 06:26:24 +00:00
|
|
|
armcopro.o maverick.o iwmmxt.o
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
## COMMON_POST_CONFIG_FRAG
|
|
|
|
|
2015-03-31 05:13:12 +00:00
|
|
|
armemu26.o: armemu.c armdefs.h armemu.h
|
2001-11-16 18:56:01 +00:00
|
|
|
$(CC) -c $(srcdir)/armemu.c -o armemu26.o $(ALL_CFLAGS)
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
armemu32.o: armemu.c armdefs.h armemu.h
|
2001-11-16 18:56:01 +00:00
|
|
|
$(CC) -c $(srcdir)/armemu.c -o armemu32.o -DMODE32 $(ALL_CFLAGS)
|