1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
$ !
$ ! VMS procedure to compile and link modules for NEdit
$ !
$ SET NOVERIFY
$ ON ERROR THEN EXIT
$ ! COMPILE := CC/DEBUG/NOOPTIMIZE
$ COMPILE := CC
$ ! For some systems: COMPILE := CC /PREFIX_LIBRARY_ENTRIES=ALL_ENTRIES
$ DEFINE SYS DECC$LIBRARY_INCLUDE
$ DEFINE XM DECW$INCLUDE
$ DEFINE X11 DECW$INCLUDE
$ !
$ SET VERIFY
$ COMPILE selection.c
$ COMPILE file.c
$ COMPILE help.c
$ COMPILE menu.c
$ COMPILE nedit.c
$ COMPILE preferences.c
$ COMPILE regularExp.c
$ COMPILE search.c
$ COMPILE shift.c
$ COMPILE tags.c
$ COMPILE undo.c
$ COMPILE window.c
$ COMPILE userCmds.c
$ COMPILE macro.c
$ COMPILE text.c
$ COMPILE textSel.c
$ COMPILE textDisp.c
$ COMPILE textBuf.c
$ COMPILE textDrag.c
$ COMPILE server.c
$ COMPILE highlight.c
$ COMPILE highlightData.c
$ COMPILE interpret.c
$ COMPILE smartIndent.c
$ !
$ COPY parse.c_noyacc parse.c
$ COMPILE parse.c
$ !
$ COMPILE nc.c
$ !
$ @LNKNEDIT
|