* interf.c (sim_open): New SIM_DESC result. Argument is now in
[deliverable/binutils-gdb.git] / sim / mips / Makefile.in
1 # Makefile template for Configure for the MIPS simulator.
2 # Written by Cygnus Support.
3
4 ## COMMON_PRE_CONFIG_FRAG
5
6 SIM_OBJS = interp.o
7 # FIXME: Hack to find syscall.h? Better support for syscall.h
8 # is in progress.
9 SIM_EXTRA_CFLAGS = -I$(srcdir)/../../newlib/libc/sys/idt
10 SIM_EXTRA_CLEAN = clean-extra
11
12 ## COMMON_POST_CONFIG_FRAG
13
14 interp.o: interp.c engine.c support.h config.h
15
16 engine.c: gencode
17 ./gencode @SIMCONF@ > $@
18
19 gencode: gencode.o getopt.o getopt1.o
20 $(CC_FOR_BUILD) -o $@ gencode.o getopt.o getopt1.o
21
22 gencode.o: $(srcdir)/gencode.c
23 $(CC_FOR_BUILD) -c -g -I${srcroot}/include $(srcdir)/gencode.c
24 getopt.o: $(srcdir)/../../libiberty/getopt.c
25 $(CC_FOR_BUILD) -c -g -I${srcroot}/include $(srcdir)/../../libiberty/getopt.c
26 getopt1.o: $(srcdir)/../../libiberty/getopt1.c
27 $(CC_FOR_BUILD) -c -g -I${srcroot}/include $(srcdir)/../../libiberty/getopt1.c
28
29 clean-extra:
30 rm -f gencode engine.c
This page took 0.067448 seconds and 4 git commands to generate.