Click here to Skip to main content
15,886,137 members
Articles / Programming Languages / C++

Building a simple C++ script compiler from Scintilla and CINT

Rate me:
Please Sign up or sign in to vote.
4.73/5 (25 votes)
8 Jul 2006CPOL7 min read 153.9K   7.6K   85  
How to build a simple C++ script compiler from Scintilla and CINT.
makecint -mk Makeit -dl statistics.dll -c statistics.c
nmake -f Makeit CFG="statistics - Win32 Release"
move Release\\statistics.dll statistics.dl

makecint -mk Makeit  -dl array.dll -c array.c -DG__WIN32
nmake -f Makeit CFG="array - Win32 Release"
move Release\\array.dll array.dl

makecint -mk Makeit  -dl carray.dll -c carray.c
nmake -f Makeit CFG="carray - Win32 Release"
move Release\\carray.dll carray.dl

makecint -mk Makeit  -dl fft.dll -c fft.c
nmake -f Makeit CFG="fft - Win32 Release"
move Release\\fft.dll fft.dl

makecint -mk Makeit  -dl lsm.dll -c lsm.c
nmake -f Makeit CFG="lsm - Win32 Release"
move Release\\lsm.dll lsm.dl

makecint -mk Makeit  -dl xgraph.dll -c xgraph.c
nmake -f Makeit CFG="xgraph - Win32 Release"
move Release\\xgraph.dll xgraph.dl

del ReadF.C
makecint -mk Makeit  -dl ReadF.dl -H ReadF.h -C++ ReadF.cxx
nmake -f Makeit CFG="ReadF - Win32 Release"
move Release\\ReadF.dll ReadF.dl

copy iosenum.win32 iosenum.h

rem makecint -mk Makeit  -dl RegE.dl -H RegE.h -C++ RegE.cxx
rem nmake -f Makeit CFG="RegE - Win32 Release"
rem move Release\\RegE.dll RegE.dl

del G__*
del *.def
del Release\*.obj
del Release\*.lib
del Release\*.exp
del Release\*.pch
rmdir Release


By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions