diff options
author | nyamatongwe <devnull@localhost> | 2009-05-06 11:00:26 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-05-06 11:00:26 +0000 |
commit | db7d4c7d5b62d95f008873dbf16db8fd5ad88cdb (patch) | |
tree | 2bd35ffd1403abdc76a0575740266be72dd6731d /macosx/makefile | |
parent | 53a714020e2a2b387f178e9941aa3d61f5ae5e58 (diff) | |
download | scintilla-mirror-db7d4c7d5b62d95f008873dbf16db8fd5ad88cdb.tar.gz |
First stage of Cocoa platform addition.
Changed identifier id since this is a reserved word in Objective C.
SCI_LEXER and SCI_NAMESPACE turned on automatically for OS X native
compilation.
Diffstat (limited to 'macosx/makefile')
-rw-r--r-- | macosx/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/makefile b/macosx/makefile index 462326965..963c4e4f6 100644 --- a/macosx/makefile +++ b/macosx/makefile @@ -36,7 +36,7 @@ DYN_FLAGS=$(LINK_FLAGS) -framework Carbon -bundle endif endif -OPTIONS=-Wall -Wno-missing-braces -Wno-char-subscripts -DSCI_NAMESPACE -DMACOSX -DSCI_LEXER +OPTIONS=-Wall -Wno-missing-braces -Wno-char-subscripts -DMACOSX #DEBUG = 1 @@ -86,7 +86,7 @@ clean: rm -f *.o $(COMPLIB) deps: - $(CC) -MM -DSCI_NAMESPACE -DMACOSX -DSCI_LEXER $(CXXFLAGS) $(INCLUDEDIRS) *.cxx ../src/*.cxx >deps.mak + $(CC) -MM -DMACOSX $(CXXFLAGS) $(INCLUDEDIRS) *.cxx ../src/*.cxx >deps.mak COMPLIB=DocumentAccessor.o WindowAccessor.o KeyWords.o StyleContext.o \ CharClassify.o Decoration.o Document.o CallTip.o PositionCache.o \ |