diff options
author | SVN Migration <svn@php.net> | 2003-02-27 17:43:39 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2003-02-27 17:43:39 +0000 |
commit | 078bcec0997ad0e07b720c43cc9e6d0e046a75ab (patch) | |
tree | 36cb0f6be2ef078fe3374de8c087b93ecf82f812 /netware/common.mif | |
parent | fd61f69077f6156ca71dde60ecfd9ed9765a02db (diff) | |
download | php-git-PHP-5.tar.gz |
This commit was manufactured by cvs2svn to create branch 'PHP_5'.PHP-5
Diffstat (limited to 'netware/common.mif')
-rw-r--r-- | netware/common.mif | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/netware/common.mif b/netware/common.mif deleted file mode 100644 index a2250e3b8c..0000000000 --- a/netware/common.mif +++ /dev/null @@ -1,90 +0,0 @@ -# -# Common include file for PHP build. -# Include this in every make file. -# - - -# Set following directories based on your setting - -# Path to CodeWarrior installation -CW_PATH = P:/APPS/SCRIPT/SW/CW71-4 - -# LibC directory -ifndef SDK_DIR -SDK_DIR = P:/APPS/script/sw/libc -endif - -# MPK related directory -ifndef MPK_DIR -MPK_DIR = p:/apps/script/mpk -XDCTOOL = mpkxdc -MPKTOOL = $(MPK_DIR)/$(XDCTOOL) -XDCFLAGS = -n -endif - -# Winsock stuff -WINSOCK_DIR = P:/APPS/script/sw/Winsock2 - -# LDAP stuff -LDAP_DIR = P:/APPS/script/sw/cldapsdk - -# XML-EXPAT stuff -EXPAT_DIR = P:/APPS/script/sw/expat - - -# Web Server defaults to Apache 1.3.x -ifndef APACHE_VER -APACHE_VER = 1.3 -endif - -# Apache directory -ifeq '$(APACHE_VER)' '1.3' -APACHE_DIR = P:/APPS/script/sw/Apache1.3.xSource -else -APACHE_DIR = P:/APPS/script/sw/Apache2Source -endif - - -# CW includes, libraries and tools -export MWCIncludes=$(CW_PATH)/include -export MWLibraries=$(CW_PATH)/lib - -# Compiler and linker tools -CC = mwccnlm -LINK = mwldnlm - -# Build type defaults to 'release' -ifndef BUILD -BUILD = release -endif - -OBJ_DIR = $(BUILD) -FINAL_DIR = $(BUILD) -MAP_FILE = $(FINAL_DIR)\$(MODULE_NAME).map - -ifndef STACK_SIZE -STACK_SIZE=65536 -endif - -ifndef COPYRIGHT -COPYRIGHT = "Copyright (C) 2002-2003 Novell\, Inc. All Rights Reserved." -endif - - -# Compile flags -ifeq '$(APACHE_VER)' '1.3' -C_FLAGS = -align 1 -C_FLAGS += -DCLIB_STAT_PATCH -else -C_FLAGS = -align 4 -endif - -# Link flags -LD_FLAGS = -stacksize $(STACK_SIZE) -type generic -zerobss -LD_FLAGS += -o $(BINARY) -map $(MAP_FILE) -nlmversion $(VMAJ),$(VMIN),$(VREV) - -# Module details -LD_FLAGS += -desc $(MODULE_DESC) -LD_FLAGS += -copy $(COPYRIGHT) -LD_FLAGS += -screenname Default -LD_FLAGS += -threadname $(MODULE_NAME)__p |