This commit was manufactured by cvs2svn to create branch

'WX_2_4_BRANCH'.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@22859 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Bryan Petty
2003-08-14 12:06:26 +00:00
parent 04231ab0c4
commit 38046fb37c
58 changed files with 620 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..\..\wxWindows
TARGET=stctest
OBJECTS = $(TARGET).obj
EXTRALIBS = $(WXDIR)\lib\stc_sc.lib
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..\..
EXTRALIBS=dcsvg_sc
TARGET=svgtest
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,74 @@
WXDIR = ..\..\..
SCINTILLA=.\scintilla
S=$(SCINTILLA)\src
EXTRASTCCPPFLAGS = -D__WX__ -DSCI_LEXER -DLINK_LEXERS -I$(SCINTILLA)/include -I$(S)
EXTRACPPFLAGS=$(EXTRACPPFLAGS) $(EXTRASTCCPPFLAGS)
STCCPPFLAGS=$(DLL_FLAGS) $(EXTRACPPFLAGS)
include $(WXDIR)\src\makesc.env
LIBTARGET=$(WXDIR)\lib\stc$(SC_SUFFIX).lib
THISDIR=$(WXDIR)\contrib\src\stc
# variables
OBJECTS = \
$(S)\AutoComplete.obj \
$(S)\CallTip.obj \
$(S)\CellBuffer.obj \
$(S)\ContractionState.obj \
$(S)\Document.obj \
$(S)\DocumentAccessor.obj \
$(S)\Editor.obj \
$(S)\Indicator.obj \
$(S)\KeyMap.obj \
$(S)\KeyWords.obj \
$(S)\LexAVE.obj \
$(S)\LexAda.obj \
$(S)\LexAsm.obj \
$(S)\LexBaan.obj \
$(S)\LexBullant.obj \
$(S)\LexMatlab.obj \
$(S)\LexCPP.obj \
$(S)\LexConf.obj \
$(S)\LexCrontab.obj \
$(S)\LexCSS.obj \
$(S)\LexEiffel.obj \
$(S)\LexFortran.obj \
$(S)\LexHTML.obj \
$(S)\LexLisp.obj \
$(S)\LexLua.obj \
$(S)\LexOthers.obj \
$(S)\LexPOV.obj \
$(S)\LexPascal.obj \
$(S)\LexPerl.obj \
$(S)\LexPython.obj \
$(S)\LexRuby.obj \
$(S)\LexSQL.obj \
$(S)\LexVB.obj \
$(S)\LineMarker.obj \
$(S)\PropSet.obj \
$(S)\RESearch.obj \
$(S)\ScintillaBase.obj \
$(S)\Style.obj \
$(S)\StyleContext.obj \
$(S)\UniConversion.obj \
$(S)\ViewStyle.obj \
$(S)\WindowAccessor.obj \
$(S)\XPM.obj \
\
PlatWX.obj \
ScintillaWX.obj \
stc.obj \
include $(WXDIR)\src\makelib.sc
.cxx.obj:
*$(CC) -c $(CFLAGS) $(STCCPPFLAGS) $(INCLUDE) $(OPTIONS) $< -o$@

View File

@@ -0,0 +1,20 @@
##############################################################################
# Name: src/zlib/makefile.sc
# Purpose: build zlib Digital Mars 8.33 compiler
# Author: Chris Elliott
# Created: 21.01.03
# RCS-ID: $Id$
# Licence: wxWindows licence
##############################################################################
WXDIR = ..\..\..
include $(WXDIR)\src\makesc.env
LIBTARGET=$(WXDIR)\lib\dcsvg$(SC_SUFFIX).lib
THISDIR=$(WXDIR)\contrib\src\svg
# variables
OBJECTS = \
$(THISDIR)\dcsvg.obj
include $(WXDIR)\src\makelib.sc

32
lib/_sc/wsock32_sc.def Normal file
View File

@@ -0,0 +1,32 @@
LIBRARY wsock32
EXETYPE NT
SUBSYSTEM WINDOWS
EXPORTS
_WSACleanup@0 = WSACleanup
_gethostbyaddr@12 = gethostbyaddr
_gethostbyname@4 = gethostbyname
_gethostname@8 = gethostname
_WSAStartup@8 = WSAStartup
_ntohs@4 = ntohs
_htons@4 = htons
_getservbyname@8 = getservbyname
_inet_addr@4 = inet_addr
_sendto@24 = sendto
_send@16 = send
_recvfrom@24 = recvfrom
_recv@16 = recv
___WSAFDIsSet@8 = __WSAFDIsSet
_select@20 = select
_WSAGetLastError@0 = WSAGetLastError
_getsockname@12 = getsockname
_bind@12 = bind
_ioctlsocket@12 = ioctlsocket
_socket@12 = socket
_connect@12 = connect
_accept@12 = accept
_listen@8 = listen
_shutdown@8 = shutdown
_closesocket@4 = closesocket
_WSAAsyncSelect@16 = WSAAsyncSelect

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..
TARGET=arttest
OBJECTS = $(TARGET).obj artbrows.obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..
TARGET=caret
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=checklst
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..
TARGET=conftest
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
EXTRALIBS=
TARGET=console
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..
TARGET=controls
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

6
samples/db/makefile.sc Normal file
View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=dbtest
OBJECTS = $(TARGET).obj listdb.obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..
TARGET=dialogs
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=nettest
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

6
samples/dnd/makefile.sc Normal file
View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=dnd
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=docview
OBJECTS = $(TARGET).obj view.obj doc.obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=drawing
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=dynamic
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

6
samples/font/makefile.sc Normal file
View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=font
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

6
samples/help/makefile.sc Normal file
View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=demo
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..
TARGET=about
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..
TARGET=help
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..
TARGET=printing
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..
TARGET=test
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..
TARGET=virtual
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..
TARGET=widget
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..
TARGET=zip
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..
TARGET=image
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

6
samples/ipc/client.sc Normal file
View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
TARGET=client
OBJECTS=$(TARGET).obj
EXTRALIBS=
include $(WXDIR)\src\makeprog.sc

6
samples/ipc/server.sc Normal file
View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
TARGET=server
OBJECTS=$(TARGET).obj
EXTRALIBS=
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=listtest
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

84
samples/makefile.sc Normal file
View File

@@ -0,0 +1,84 @@
#makefile for Digital Mars / Symantec compilers
WXDIR=..
all:
cd access
-make -f $(WXDIR)\samples\access\makefile.sc
-make -f $(WXDIR)\samples\artprov\makefile.sc
-make -f $(WXDIR)\samples\calendar\makefile.sc $@
-make -f $(WXDIR)\samples\caret\makefile.sc $@
-make -f $(WXDIR)\samples\checklst\makefile.sc $@
-make -f $(WXDIR)\samples\config\makefile.sc $@
-make -f $(WXDIR)\samples\console\makefile.sc $@
-make -f $(WXDIR)\samples\controls\makefile.sc $@
-make -f $(WXDIR)\samples\db\makefile.sc $@
-make -f $(WXDIR)\samples\dialogs\makefile.sc $@
-make -f $(WXDIR)\samples\dialup\makefile.sc $@
-make -f $(WXDIR)\samples\display\makefile.sc $@
-make -f $(WXDIR)\samples\dnd\makefile.sc $@
-make -f $(WXDIR)\samples\docview\makefile.sc $@
-make -f $(WXDIR)\samples\docvwmdi\makefile.sc $@
-make -f $(WXDIR)\samples\dragimag\makefile.sc $@
-make -f $(WXDIR)\samples\drawing\makefile.sc $@
-make -f $(WXDIR)\samples\dynamic\makefile.sc $@
-make -f $(WXDIR)\samples\erase\makefile.sc $@
-make -f $(WXDIR)\samples\event\makefile.sc $@
-make -f $(WXDIR)\samples\exec\makefile.sc $@
-make -f $(WXDIR)\samples\font\makefile.sc $@
-make -f $(WXDIR)\samples\grid\makefile.sc $@
-make -f $(WXDIR)\samples\help\makefile.sc $@
-make -f $(WXDIR)\samples\htlbox\makefile.sc $@
-make -f $(WXDIR)\samples\html\makefile.sc $@
-make -f $(WXDIR)\samples\image\makefile.sc $@
-make -f $(WXDIR)\samples\internat\makefile.sc $@
-make -f $(WXDIR)\samples\ipc\makefile.sc $@
-make -f $(WXDIR)\samples\joytest\makefile.sc $@
-make -f $(WXDIR)\samples\keyboard\makefile.sc $@
-make -f $(WXDIR)\samples\layout\makefile.sc $@
-make -f $(WXDIR)\samples\listbox\makefile.sc $@
-make -f $(WXDIR)\samples\listctrl\makefile.sc $@
-make -f $(WXDIR)\samples\mdi\makefile.sc $@
-make -f $(WXDIR)\samples\memcheck\makefile.sc $@
-make -f $(WXDIR)\samples\menu\makefile.sc $@
-make -f $(WXDIR)\samples\mfc\makefile.sc $@
-make -f $(WXDIR)\samples\minifram\makefile.sc $@
-make -f $(WXDIR)\samples\minimal\makefile.sc $@
-make -f $(WXDIR)\samples\mobile\makefile.sc $@
-make -f $(WXDIR)\samples\multimon\makefile.sc $@
-make -f $(WXDIR)\samples\nativdlg\makefile.sc $@
-make -f $(WXDIR)\samples\newgrid\makefile.sc $@
-make -f $(WXDIR)\samples\notebook\makefile.sc $@
-make -f $(WXDIR)\samples\oleauto\makefile.sc $@
-make -f $(WXDIR)\samples\opengl\makefile.sc $@
-make -f $(WXDIR)\samples\ownerdrw\makefile.sc $@
-make -f $(WXDIR)\samples\png\makefile.sc $@
-make -f $(WXDIR)\samples\printing\makefile.sc $@
-make -f $(WXDIR)\samples\propsize\makefile.sc $@
-make -f $(WXDIR)\samples\regtest\makefile.sc $@
-make -f $(WXDIR)\samples\resource\makefile.sc $@
-make -f $(WXDIR)\samples\richedit\makefile.sc $@
-make -f $(WXDIR)\samples\rotate\makefile.sc $@
-make -f $(WXDIR)\samples\sashtest\makefile.sc $@
-make -f $(WXDIR)\samples\scroll\makefile.sc $@
-make -f $(WXDIR)\samples\scrollsub\makefile.sc $@
-make -f $(WXDIR)\samples\shaped\makefile.sc $@
-make -f $(WXDIR)\samples\sockets\makefile.sc $@
-make -f $(WXDIR)\samples\splitter\makefile.sc $@
-make -f $(WXDIR)\samples\statbar\makefile.sc $@
-make -f $(WXDIR)\samples\tab\makefile.sc $@
-make -f $(WXDIR)\samples\taskbar\makefile.sc $@
-make -f $(WXDIR)\samples\text\makefile.sc $@
-make -f $(WXDIR)\samples\thread\makefile.sc $@
-make -f $(WXDIR)\samples\toolbar\makefile.sc $@
-make -f $(WXDIR)\samples\treectrl\makefile.sc $@
-make -f $(WXDIR)\samples\typetest\makefile.sc $@
-make -f $(WXDIR)\samples\validate\makefile.sc $@
-make -f $(WXDIR)\samples\vscroll\makefile.sc $@
-make -f $(WXDIR)\samples\widgets\makefile.sc $@
-make -f $(WXDIR)\samples\wizard\makefile.sc $@
-make -f $(WXDIR)\samples\wxtest\makefile.sc $@
-make -f $(WXDIR)\samples\bytes\makefile.sc $@

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
EXTRALIBS=
TARGET=memcheck
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

6
samples/menu/makefile.sc Normal file
View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=menu
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

7
samples/mfc/makefile.sc Normal file
View File

@@ -0,0 +1,7 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
EXTRALIBS=
TARGET=hello
$(TARGET).exe: $(OBJECTS) $(TARGET).def $(TARGET).res
$(TARGET)
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..\wxWindows
TARGET=multimon_test
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=oleauto
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,4 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
EXTRALIBS=
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=ownerdrw
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

6
samples/png/Makefile.sc Normal file
View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..
TARGET=pngdemo
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=printing
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=regtest
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=wxlayout
OBJECTS = wxLayout.obj kbList.obj wxllist.obj wxlparser.obj wxlwindow.obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=rotate
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=scroll
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=scrollsub
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=client
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,8 @@
#Digital Mars (was Symantec) C++ makefile
all:
make -f client.sc
make -f server.sc
clean:
make -f client.sc clean
make -f server.sc clean

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=server
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

6
samples/stc/Makefile.sc Normal file
View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..\..\..\wxWindows
TARGET=stctest
OBJECTS = $(TARGET).obj
EXTRALIBS = $(WXDIR)\lib\stc_sc.lib
include $(WXDIR)\src\makeprog.sc

6
samples/svg/makefile.sc Normal file
View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..\..
EXTRALIBS=dcsvg_sc
TARGET=svgtest
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = ..\..
EXTRALIBS=
TARGET=tbtest
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

6
samples/text/Makefile.sc Normal file
View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..
TARGET=text
OBJECTS = $(TARGET).obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,7 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..
TARGET=widgets
OBJECTS = $(TARGET).obj button.obj combobox.obj gauge.obj listbox.obj\
notebook.obj radiobox.obj slider.obj spinbtn.obj static.obj textctrl.obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

View File

@@ -0,0 +1,6 @@
#Makefile from wxHatch for Symantec/Digital Mars compiler
WXDIR=..\..
TARGET=test
OBJECTS = $(TARGET).obj test_wdr.obj
EXTRALIBS =
include $(WXDIR)\src\makeprog.sc

28
src/makeprog.sc Normal file
View File

@@ -0,0 +1,28 @@
# Symantec DigitalMars C++ makefile
WXLIB = $(WXDIR)\lib\wx.lib
INCDIR = $(WXDIR)\include
INCLUDE=$(INCDIR)
include $(WXDIR)\src\makesc.env
$(TARGET).exe: $(OBJECTS) $(TARGET).res
link $(LDFLAGS) /DELEXECUTABLE /RC -L/exet:nt/su:windows $(OBJECTS), $@, $*, $(LIBDIR)\ $(LIBS)
clean:
-del *.obj
-del *.exe
-del *.res
-del *.map
-del *.rws
-del *.sym
cleanexe:
-del *.exe
relink: cleanexe $(TARGET).exe

74
src/stc/makefile.sc Normal file
View File

@@ -0,0 +1,74 @@
WXDIR = ..\..\..
SCINTILLA=.\scintilla
S=$(SCINTILLA)\src
EXTRASTCCPPFLAGS = -D__WX__ -DSCI_LEXER -DLINK_LEXERS -I$(SCINTILLA)/include -I$(S)
EXTRACPPFLAGS=$(EXTRACPPFLAGS) $(EXTRASTCCPPFLAGS)
STCCPPFLAGS=$(DLL_FLAGS) $(EXTRACPPFLAGS)
include $(WXDIR)\src\makesc.env
LIBTARGET=$(WXDIR)\lib\stc$(SC_SUFFIX).lib
THISDIR=$(WXDIR)\contrib\src\stc
# variables
OBJECTS = \
$(S)\AutoComplete.obj \
$(S)\CallTip.obj \
$(S)\CellBuffer.obj \
$(S)\ContractionState.obj \
$(S)\Document.obj \
$(S)\DocumentAccessor.obj \
$(S)\Editor.obj \
$(S)\Indicator.obj \
$(S)\KeyMap.obj \
$(S)\KeyWords.obj \
$(S)\LexAVE.obj \
$(S)\LexAda.obj \
$(S)\LexAsm.obj \
$(S)\LexBaan.obj \
$(S)\LexBullant.obj \
$(S)\LexMatlab.obj \
$(S)\LexCPP.obj \
$(S)\LexConf.obj \
$(S)\LexCrontab.obj \
$(S)\LexCSS.obj \
$(S)\LexEiffel.obj \
$(S)\LexFortran.obj \
$(S)\LexHTML.obj \
$(S)\LexLisp.obj \
$(S)\LexLua.obj \
$(S)\LexOthers.obj \
$(S)\LexPOV.obj \
$(S)\LexPascal.obj \
$(S)\LexPerl.obj \
$(S)\LexPython.obj \
$(S)\LexRuby.obj \
$(S)\LexSQL.obj \
$(S)\LexVB.obj \
$(S)\LineMarker.obj \
$(S)\PropSet.obj \
$(S)\RESearch.obj \
$(S)\ScintillaBase.obj \
$(S)\Style.obj \
$(S)\StyleContext.obj \
$(S)\UniConversion.obj \
$(S)\ViewStyle.obj \
$(S)\WindowAccessor.obj \
$(S)\XPM.obj \
\
PlatWX.obj \
ScintillaWX.obj \
stc.obj \
include $(WXDIR)\src\makelib.sc
.cxx.obj:
*$(CC) -c $(CFLAGS) $(STCCPPFLAGS) $(INCLUDE) $(OPTIONS) $< -o$@

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B