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

Comparing SheepShaver/src/Unix/Makefile.in (file contents):
Revision 1.16 by gbeauche, 2004-07-02T06:06:34Z vs.
Revision 1.17 by gbeauche, 2004-07-07T04:13:37Z

# Line 43 | Line 43 | SRCS = main_unix.cpp ../prefs.cpp ../pre
43      vm_alloc.cpp sigsegv.cpp \
44      sshpty.c strlcpy.c $(SYSSRCS) $(CPUSRCS)
45   APP = SheepShaver
46 + APP_APP = $(APP).app
47  
48   ## Rules
49   .PHONY: modules install uninstall clean distclean depend dep
# Line 75 | Line 76 | $(APP): $(OBJ_DIR) $(OBJS)
76          $(CXX) -o $(APP) $(LDFLAGS) $(OBJS) $(LIBS)
77          $(BLESS) $(APP)
78  
79 + $(APP)_app: $(APP) ../MacOSX/Info.plist ../MacOSX/SheepShaver.icns
80 +        mkdir -p $(APP_APP)/Contents
81 +        cp -f ../MacOSX/Info.plist $(APP_APP)/Contents/
82 +        echo -n 'APPL????' > $(APP_APP)/Contents/PkgInfo
83 +        mkdir -p $(APP_APP)/Contents/MacOS
84 +        cp -f $(APP) $(APP_APP)/Contents/MacOS/
85 +        strip $(APP_APP)/Contents/MacOS/$(APP)
86 +        mkdir -p $(APP_APP)/Contents/Resources
87 +        cp -f ../MacOSX/SheepShaver.icns $(APP_APP)/Contents/Resources/
88 +
89   modules:
90          cd NetDriver; make
91  
# Line 98 | Line 109 | uninstall:
109   clean:
110          rm -f $(APP) $(OBJ_DIR)/* core* *.core *~ *.bak ppc-execute-impl.cpp
111          rm -f dyngen basic-dyngen-ops.hpp ppc-dyngen-ops.hpp
112 +        rm -rf $(APP_APP)
113  
114   distclean: clean
115          rm -rf $(OBJ_DIR)
116          rm -f Makefile
117          rm -f config.cache config.log config.status config.h
118 +        rm -f ../MacOSX/Info.plist
119  
120   depend dep:
121          makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines