ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/MacOSX/Makefile.in
(Generate patch)

Comparing BasiliskII/src/MacOSX/Makefile.in (file contents):
Revision 1.23 by gbeauche, 2007-06-15T09:16:58Z vs.
Revision 1.24 by gbeauche, 2007-06-15T10:11:28Z

# Line 7 | Line 7 | CC = @CC@
7   CXX = @CXX@
8   CFLAGS = @CFLAGS@ -g
9   CXXFLAGS = @CXXFLAGS@ -g
10 < CPPFLAGS = @CPPFLAGS@ -I../include -I. @CPUINCLUDES@ -I../slirp
10 > CPPFLAGS = @CPPFLAGS@ -I../include -I. @CPUINCLUDES@
11   DEFS = @DEFS@ @DEFINES@ -D_REENTRANT -DAQUA
12   LDFLAGS = @LDFLAGS@
13   LIBS = @LIBS@
14 < SYSSRCS = @SYSSRCS@
15 < CPUSRCS = @CPUSRCS@
14 > MONSRCS = @MONSRCS@
15   BLESS = @BLESS@
16   LN_S = ln -s
17  
18 + ## slirp network emulation code
19 + WANT_SLIRP = @WANT_SLIRP@
20 + ifeq ($(WANT_SLIRP), yes)
21 + CPPFLAGS += -I../slirp
22   SLIRP_CFLAGS = @SLIRP_CFLAGS@
23   SLIRP_SRCS = @SLIRP_SRCS@
24   SLIRP_OBJS = $(SLIRP_SRCS:../slirp/%.c=obj/%.o)
25 + endif
26 +
27 + ## CPU emulation code
28 + WANT_JIT = @WANT_JIT@
29 + WANT_JIT_DEBUG = @WANT_JIT_DEBUG@
30 + USE_JIT = $(WANT_JIT)
31 + CPUSRCS = @CPUSRCS@
32 + ifeq ($(USE_JIT), yes)
33 + DEFS += -DUSE_JIT -DUSE_JIT_FPU
34 + ifeq ($(WANT_JIT_DEBUG), yes)
35 + DEFS += -DJIT_DEBUG
36 + endif
37 + CPUSRCS += \
38 +        cpuemu1_nf.cpp cpuemu2_nf.cpp cpuemu3_nf.cpp cpuemu4_nf.cpp \
39 +        cpuemu5_nf.cpp cpuemu6_nf.cpp cpuemu7_nf.cpp cpuemu8_nf.cpp \
40 +        compemu1.cpp compemu2.cpp compemu3.cpp compemu4.cpp \
41 +        compemu5.cpp compemu6.cpp compemu7.cpp compemu8.cpp \
42 +        ../uae_cpu/compiler/compemu_support.cpp \
43 +        ../uae_cpu/compiler/compemu_fpp.cpp \
44 +        compstbl.o cpustbl_nf.o
45 + endif
46  
47   ## Files
48   UNIXSRCS = vm_alloc.cpp vm_alloc.h sigsegv.cpp sigsegv.h video_vosf.h video_blit.cpp \
# Line 36 | Line 60 | SRCS = ../main.cpp main_macosx.mm ../pre
60      audio_macosx.cpp AudioBackEnd.cpp AudioDevice.cpp MacOSX_sound_if.cpp \
61      NNThread.m Emulator.mm EmulatorView.mm Controller.mm PrefsEditor.mm \
62      sshpty.c strlcpy.c \
63 <    $(CPUSRCS) $(SLIRP_SRCS)
63 >    $(MONSRCS) $(CPUSRCS) $(SLIRP_SRCS)
64   APP = BasiliskII
65   APP_APP = $(APP).app
66  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines