Index: BUILD.TXT =================================================================== RCS file: /u2/cvsroot/abi/BUILD.TXT,v retrieving revision 1.7 diff -c -r1.7 BUILD.TXT *** BUILD.TXT 2000/04/22 05:52:09 1.7 --- BUILD.TXT 2000/08/02 06:39:26 *************** *** 89,94 **** --- 89,104 ---- Expand this in /boot/apps. You can then run /boot/apps/AbiSuite/bin/AbiWord. + Build Instructions -- MacOS X + ----------------------------- + + Building on MacOS X is similar to the other platforms. We rely on the + GNU command line tools like zsh, sed, make, etc. that are provided on + MacOS X. Currently this will be the system to build a Carbon version + of AbiWord under MacOS X. Currently only Mach-O binary format is + supported (like on NeXTStep). A MPW Makefile and/or a CodeWarrior + project will be done later. + ======================================================================================= FAQ Index: src/config/abi_defs.mk =================================================================== RCS file: /u2/cvsroot/abi/src/config/abi_defs.mk,v retrieving revision 1.104 diff -c -r1.104 abi_defs.mk *** src/config/abi_defs.mk 2000/08/01 04:23:35 1.104 --- src/config/abi_defs.mk 2000/08/02 06:39:26 *************** *** 137,142 **** --- 137,152 ---- ################################################################## ################################################################## + #### if it is Darwin, we suspect taht we have MacOS X, hence we + #### build MacOS version using Carbon. Change later when we + #### support Darwin running X and other varieties (like MacOS X + #### using Cocoa). + ifeq ($(OS_NAME), Darwin) + OS_NAME = MACOSX + endif + + ################################################################## + ################################################################## ## Macros which help eliminate our need for a working copy of the ## INSTALL program... *************** *** 328,333 **** --- 338,348 ---- ifeq ($(OS_NAME), OSF1) include $(ABI_ROOT)/src/config/platforms/osf1.mk endif + + ifeq ($(OS_NAME), MACOSX) + include $(ABI_ROOT)/src/config/platforms/macosx.mk + endif + # Catch all for undefined platform (CC will always be defined on a working platform) ifndef CC