aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/common.mk
diff options
context:
space:
mode:
authornyamatongwe <nyamatongwe@gmail.com>2013-09-20 20:23:39 +1000
committernyamatongwe <nyamatongwe@gmail.com>2013-09-20 20:23:39 +1000
commitb4994a3a807e1f29d8be1d49afc3c00be4845c7c (patch)
tree002c80dc479b340db4fe5b8027dd3318e4ec6e18 /cocoa/common.mk
parentbdc8a679baba7cbb4350a270ae14e8160859bea7 (diff)
downloadscintilla-mirror-b4994a3a807e1f29d8be1d49afc3c00be4845c7c.tar.gz
Removed make files as they have not been maintained and no longer work.
The checkbuildosx.sh script now looks for installed SDKs macosx10.? and builds with each one that is installed.
Diffstat (limited to 'cocoa/common.mk')
-rw-r--r--cocoa/common.mk57
1 files changed, 0 insertions, 57 deletions
diff --git a/cocoa/common.mk b/cocoa/common.mk
deleted file mode 100644
index beb3b0f46..000000000
--- a/cocoa/common.mk
+++ /dev/null
@@ -1,57 +0,0 @@
-### shared variables and targets between Framework.mk and SciTest.mk ###
-
-# build directories
-BLD=build
-APP_BLD=$(BLD)/Application
-FRM_BLD=$(BLD)/Framework
-
-ifdef DBG
-CFLAGS=-g -O0
-else
-CFLAGS=-Os
-endif
-
-# compiler and compiler options
-ARCH=-arch i386 $(CFLAGS)
-CC=gcc -x c++ $(ARCH)
-CO=gcc -x objective-c++ $(ARCH)
-CCX=$(CC) $(gDEFs) $(INCS)
-CCO=$(CO) $(gDEFs) $(INCS)
-
-# include directories and global #define
-gDEFs=-DSCI_NAMESPACE -DSCI_LEXER
-
-# source directories
-SRC_DIRS=../src ./ScintillaFramework ./ScintillaTest ./ \
- ../lexers ../lexlib
-
-INC_DIRS=$(SRC_DIRS) ../include
-
-INCS=$(addprefix -I,$(INC_DIRS))
-
-vpath %.m $(SRC_DIRS)
-vpath %.mm $(SRC_DIRS)
-vpath %.cpp $(SRC_DIRS)
-vpath %.cxx $(SRC_DIRS)
-vpath %.c $(SRC_DIRS)
-vpath %.h $(INC_DIRS)
-
-# clean everything
-clean:
- -rm -rf $(BLD)
-
-# build application objective-c++ files
-$(APP_BLD)/%.o : %.mm
- $(CCO) -c $< -o $@
-
-# build application objective-c files
-$(APP_BLD)/%.o : %.m
- $(CCO) -c $< -o $@
-
-# build framework c++ files
-$(FRM_BLD)/%.o : %.cxx
- $(CCX) -c $< -o $@
-
-# build framework objective-c++ files
-$(FRM_BLD)/%.o : %.mm
- $(CCO) -c $< -o $@ \ No newline at end of file