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.26 by gbeauche, 2007-06-15T21:46:25Z vs.
Revision 1.29 by asvitkine, 2008-12-09T18:03:35Z

# Line 14 | Line 14 | DEFS = @DEFS@ @DEFINES@ -D_REENTRANT -DA
14   LDFLAGS = @LDFLAGS@
15   LIBS = @LIBS@
16   MONSRCS = @MONSRCS@
17 BLESS = @BLESS@
17   LN_S = ln -s
18  
19   ## Compilers selection (XXX hackery for 10.2 cross-compilation...)
# Line 99 | Line 98 | SRCS = ../main.cpp main_macosx.mm ../pre
98      ../emul_op.cpp ../macos_util.cpp ../xpram.cpp xpram_unix.cpp ../timer.cpp \
99      timer_unix.cpp ../adb.cpp ../serial.cpp serial_unix.cpp ../ether.cpp ether_unix.cpp \
100      ../sony.cpp ../disk.cpp ../cdrom.cpp ../scsi.cpp ../video.cpp video_macosx.mm \
101 <    vm_alloc.cpp sigsegv.cpp ../audio.cpp ../extfs.cpp extfs_macosx.mm \
101 >    vm_alloc.cpp sigsegv.cpp ../audio.cpp ../extfs.cpp extfs_macosx.cpp \
102      ../user_strings.cpp user_strings_unix.cpp clip_macosx.cpp misc_macosx.mm \
103      ../dummy/scsi_dummy.cpp \
104      audio_macosx.cpp AudioBackEnd.cpp AudioDevice.cpp MacOSX_sound_if.cpp \
# Line 116 | Line 115 | APP_APP = $(APP).app
115   TARGET_ARCHES = @TARGET_ARCHES@
116   PROGS = $(foreach arch, $(TARGET_ARCHES), $(APP).$(arch))
117  
118 + BLESS = $(OBJ_DIR)/lowmem
119 +
120   ## Rules
121   .PHONY: modules install installdirs uninstall mostlyclean clean distclean depend dep
122   .SUFFIXES:
# Line 159 | Line 160 | $(foreach arch,$(TARGET_ARCHES),$(eval $
160  
161   links: $(UNIXSRCS)
162  
163 < $(OBJ_DIR)/$(APP): $(OBJ_DIR) $(GEN_DIR) $(OBJS)
163 > $(BLESS): $(OBJ_DIR) $(OBJ_DIR)/lowmem.o
164 >        $(HOST_CC) -o $@ $(OBJ_DIR)/lowmem.o
165 > $(OBJ_DIR)/lowmem.o: ../Unix/Darwin/lowmem.c
166 >        $(HOST_CC) -o $@ -c $<
167 >
168 > $(OBJ_DIR)/$(APP): $(OBJ_DIR) $(GEN_DIR) $(OBJS) $(BLESS)
169          $(CXX) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
170          $(BLESS) $@
171  
# Line 169 | Line 175 | $(APP)_app: $(APP) $(DOCS) Info.plist $(
175          echo -n 'APPL????' > $(APP_APP)/Contents/PkgInfo
176          mkdir -p $(APP_APP)/Contents/MacOS
177          cp -f $(APP) $(APP_APP)/Contents/MacOS/
178 <        strip $(APP_APP)/Contents/MacOS/$(APP)
178 >        strip -x $(APP_APP)/Contents/MacOS/$(APP)
179          mkdir -p $(APP_APP)/Contents/Resources
180          cp -Rp English.lproj $(APP_APP)/Contents/Resources/
181          cp -f $(APP).icns $(APP_APP)/Contents/Resources/

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines