# Copyright (C) 2001-2015  The Bochs Project
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA

# Makefile for the fpu component of bochs

.SUFFIXES: .cc

srcdir = .

top_builddir    = ..
top_srcdir      = ../..

SHELL = /bin/sh



CC       = cl
CFLAGS   = /nologo /MT /W3 /DNDEBUG /DWIN32 /D_WINDOWS /D_CRT_SECURE_NO_WARNINGS /O2 /Gr /EHs-c- 
CXX      = cl
CXXFLAGS = /nologo /MT /W3 /DNDEBUG /DWIN32 /D_WINDOWS /D_CRT_SECURE_NO_WARNINGS /O2 /Gr /EHs-c- 

#CFLAGS  = -Wall -Wstrict-prototypes -fomit-frame-pointer -fno-strict-aliasing -pipe -fno-strength-reduce -mpreferred-stack-boundary=2 -DCPU=686 -march=i686

LDFLAGS    = 
LIBS       = 
RANLIB     = echo

L_TARGET = libfpu.a


BX_INCDIRS = -I.. -I../.. -I$(srcdir)/.. -I$(srcdir)/../.. -I../../instrument/stubs -I$(srcdir)/../../instrument/stubs

OBJS = ferr.o fpu.o fpu_arith.o fpu_compare.o fpu_const.o fpu_cmov.o \
               fpu_load_store.o fpu_misc.o fpu_trans.o \
               fprem.o fsincos.o f2xm1.o fyl2x.o fpatan.o \
               softfloat.o softfloatx80.o softfloat16.o softfloat-muladd.o \
               softfloat-specialize.o softfloat-round-pack.o poly.o

all: libfpu.a

.cc.o:
	$(CXX) /c $(BX_INCDIRS) $(CXXFLAGS) /Tp$< /Fo$@

.c.o:
	$(CC) /c $(CFLAGS) $(BX_INCDIRS) $< /Fo$@


libfpu.a: $(OBJS)
	-del libfpu.a
	lib /nologo /subsystem:console,"5.01" /verbose /out:$@ $(OBJS)
	$(RANLIB) libfpu.a

clean:
	-del *.o
	-del *.a

dist-clean: clean
	-del Makefile

###########################################
# dependencies generated by
#  gcc -MM -I.. -I../.. -I../../instrument/stubs *.cc | sed 's/\.cc/.cc/g'
###########################################
f2xm1.o: f2xm1.cc softfloatx80.h softfloat.h ../../config.h \
 softfloat-specialize.h softfloat-macros.h softfloat-round-pack.h
ferr.o: ferr.cc ../../bochs.h ../../config.h ../../osdep.h \
 ../../bx_debug/debug.h ../../config.h ../../osdep.h \
 ../../gui/siminterface.h ../../cpudb.h ../../gui/paramtree.h \
 ../../memory/memory.h ../../pc_system.h ../../gui/gui.h \
 ../../instrument/stubs/instrument.h ../cpu.h ../access.h ../cpuid.h \
 ../crregs.h ../descriptor.h ../instr.h \
 ../ia_opcodes.h ../lazy_flags.h ../icache.h \
 ../apic.h ../i387.h ../fpu/softfloat.h \
 ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
 ../xmm.h ../vmx.h ../stack.h softfloat-specialize.h \
 softfloat.h
fpatan.o: fpatan.cc softfloatx80.h softfloat.h ../../config.h \
 softfloat-specialize.h softfloat-macros.h softfloat-round-pack.h \
 fpu_constant.h
fprem.o: fprem.cc softfloatx80.h softfloat.h ../../config.h \
 softfloat-specialize.h softfloat-round-pack.h softfloat-macros.h
fpu_arith.o: fpu_arith.cc ../../bochs.h ../../config.h ../../osdep.h \
 ../../bx_debug/debug.h ../../config.h ../../osdep.h \
 ../../gui/siminterface.h ../../cpudb.h ../../gui/paramtree.h \
 ../../memory/memory.h ../../pc_system.h ../../gui/gui.h \
 ../../instrument/stubs/instrument.h ../cpu.h ../access.h ../cpuid.h \
 ../crregs.h ../descriptor.h ../instr.h \
 ../ia_opcodes.h ../lazy_flags.h ../icache.h \
 ../apic.h ../i387.h ../fpu/softfloat.h \
 ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
 ../xmm.h ../vmx.h ../stack.h softfloatx80.h \
 softfloat.h softfloat-specialize.h
fpu.o: fpu.cc ../../bochs.h ../../config.h ../../osdep.h \
 ../../bx_debug/debug.h ../../config.h ../../osdep.h \
 ../../gui/siminterface.h ../../cpudb.h ../../gui/paramtree.h \
 ../../memory/memory.h ../../pc_system.h ../../gui/gui.h \
 ../../instrument/stubs/instrument.h ../cpu.h ../access.h ../cpuid.h \
 ../crregs.h ../descriptor.h ../instr.h \
 ../ia_opcodes.h ../lazy_flags.h ../icache.h \
 ../apic.h ../i387.h ../fpu/softfloat.h \
 ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
 ../xmm.h ../vmx.h ../stack.h ../../iodev/iodev.h \
 ../../plugin.h ../../extplugin.h ../../param_names.h softfloatx80.h \
 softfloat.h softfloat-specialize.h
fpu_cmov.o: fpu_cmov.cc ../../bochs.h ../../config.h ../../osdep.h \
 ../../bx_debug/debug.h ../../config.h ../../osdep.h \
 ../../gui/siminterface.h ../../cpudb.h ../../gui/paramtree.h \
 ../../memory/memory.h ../../pc_system.h ../../gui/gui.h \
 ../../instrument/stubs/instrument.h ../cpu.h ../access.h ../cpuid.h \
 ../crregs.h ../descriptor.h ../instr.h \
 ../ia_opcodes.h ../lazy_flags.h ../icache.h \
 ../apic.h ../i387.h ../fpu/softfloat.h \
 ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
 ../xmm.h ../vmx.h ../stack.h
fpu_compare.o: fpu_compare.cc ../../bochs.h ../../config.h ../../osdep.h \
 ../../bx_debug/debug.h ../../config.h ../../osdep.h \
 ../../gui/siminterface.h ../../cpudb.h ../../gui/paramtree.h \
 ../../memory/memory.h ../../pc_system.h ../../gui/gui.h \
 ../../instrument/stubs/instrument.h ../cpu.h ../access.h ../cpuid.h \
 ../crregs.h ../descriptor.h ../instr.h \
 ../ia_opcodes.h ../lazy_flags.h ../icache.h \
 ../apic.h ../i387.h ../fpu/softfloat.h \
 ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
 ../xmm.h ../vmx.h ../stack.h softfloatx80.h \
 softfloat.h softfloat-specialize.h
fpu_const.o: fpu_const.cc ../../bochs.h ../../config.h ../../osdep.h \
 ../../bx_debug/debug.h ../../config.h ../../osdep.h \
 ../../gui/siminterface.h ../../cpudb.h ../../gui/paramtree.h \
 ../../memory/memory.h ../../pc_system.h ../../gui/gui.h \
 ../../instrument/stubs/instrument.h ../cpu.h ../access.h ../cpuid.h \
 ../crregs.h ../descriptor.h ../instr.h \
 ../ia_opcodes.h ../lazy_flags.h ../icache.h \
 ../apic.h ../i387.h ../fpu/softfloat.h \
 ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
 ../xmm.h ../vmx.h ../stack.h softfloatx80.h \
 softfloat.h softfloat-specialize.h
fpu_load_store.o: fpu_load_store.cc ../../bochs.h ../../config.h \
 ../../osdep.h ../../bx_debug/debug.h ../../config.h ../../osdep.h \
 ../../gui/siminterface.h ../../cpudb.h ../../gui/paramtree.h \
 ../../memory/memory.h ../../pc_system.h ../../gui/gui.h \
 ../../instrument/stubs/instrument.h ../cpu.h ../access.h ../cpuid.h \
 ../crregs.h ../descriptor.h ../instr.h \
 ../ia_opcodes.h ../lazy_flags.h ../icache.h \
 ../apic.h ../i387.h ../fpu/softfloat.h \
 ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
 ../xmm.h ../vmx.h ../stack.h softfloatx80.h \
 softfloat.h softfloat-specialize.h
fpu_misc.o: fpu_misc.cc ../../bochs.h ../../config.h ../../osdep.h \
 ../../bx_debug/debug.h ../../config.h ../../osdep.h \
 ../../gui/siminterface.h ../../cpudb.h ../../gui/paramtree.h \
 ../../memory/memory.h ../../pc_system.h ../../gui/gui.h \
 ../../instrument/stubs/instrument.h ../cpu.h ../access.h ../cpuid.h \
 ../crregs.h ../descriptor.h ../instr.h \
 ../ia_opcodes.h ../lazy_flags.h ../icache.h \
 ../apic.h ../i387.h ../fpu/softfloat.h \
 ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
 ../xmm.h ../vmx.h ../stack.h softfloatx80.h \
 softfloat.h softfloat-specialize.h
fpu_trans.o: fpu_trans.cc ../../bochs.h ../../config.h ../../osdep.h \
 ../../bx_debug/debug.h ../../config.h ../../osdep.h \
 ../../gui/siminterface.h ../../cpudb.h ../../gui/paramtree.h \
 ../../memory/memory.h ../../pc_system.h ../../gui/gui.h \
 ../../instrument/stubs/instrument.h ../cpu.h ../access.h ../cpuid.h \
 ../crregs.h ../descriptor.h ../instr.h \
 ../ia_opcodes.h ../lazy_flags.h ../icache.h \
 ../apic.h ../i387.h ../fpu/softfloat.h \
 ../fpu/tag_w.h ../fpu/status_w.h ../fpu/control_w.h \
 ../xmm.h ../vmx.h ../stack.h softfloatx80.h \
 softfloat.h softfloat-specialize.h
fsincos.o: fsincos.cc softfloatx80.h softfloat.h ../../config.h \
 softfloat-specialize.h softfloat-macros.h softfloat-round-pack.h \
 fpu_constant.h
fyl2x.o: fyl2x.cc softfloatx80.h softfloat.h ../../config.h \
 softfloat-specialize.h softfloat-macros.h softfloat-round-pack.h \
 fpu_constant.h
poly.o: poly.cc softfloat.h ../../config.h
softfloat16.o: softfloat16.cc softfloat.h ../../config.h \
 softfloat-round-pack.h softfloat-specialize.h softfloat-macros.h
softfloat.o: softfloat.cc softfloat.h ../../config.h \
 softfloat-round-pack.h softfloat-macros.h softfloat-specialize.h
softfloat-muladd.o: softfloat-muladd.cc softfloat.h ../../config.h \
 softfloat-round-pack.h softfloat-macros.h softfloat-specialize.h
softfloat-round-pack.o: softfloat-round-pack.cc softfloat.h \
 ../../config.h softfloat-round-pack.h softfloat-macros.h \
 softfloat-specialize.h
softfloat-specialize.o: softfloat-specialize.cc softfloat.h \
 ../../config.h softfloat-specialize.h softfloat-macros.h
softfloatx80.o: softfloatx80.cc softfloatx80.h softfloat.h ../../config.h \
 softfloat-specialize.h softfloat-round-pack.h softfloat-macros.h
