mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-22 02:25:35 +00:00
Too much to list all, but includes (in no particular order): - Cleanup for 64-bit builds, MSVC warnings. - Structured help - Help file compiler. - Supports volsets, writes/create work. - Support for I18n in messages, help. - Makefiles. - Initialize volume/volset - Command line editing/history Builds and works on Linux and Windows (VS). Not recently built or tested on other platforms, but not intentinonally broken.
47 lines
653 B
Makefile
47 lines
653 B
Makefile
# -*- Makefile -*-
|
|
|
|
# Used to generate descrip.mms
|
|
# In theory should build under VMS with GNU tools.
|
|
# But that's just a theory...
|
|
|
|
# Special defines, e.g.
|
|
# DEFS="-DDEBUG_RMS -DDEBUG_BUILD -D_FILE_OFFSET_BITS=32"
|
|
|
|
CCFLAGS = -O4 -g
|
|
|
|
#LDLIBS = -ledit -ltermcap
|
|
|
|
# Default language
|
|
|
|
ODS2LANG = en_us
|
|
|
|
# Object file extension
|
|
OBJ = .OBJ
|
|
|
|
EXE = .EXE
|
|
|
|
DELETE = DELETE
|
|
GEN = ";*"
|
|
|
|
RUN = mcr sys$disk:[]
|
|
|
|
COPY = COPY
|
|
|
|
LN = COPY
|
|
|
|
# Physical I/O module
|
|
PHYSIO = phyvms
|
|
|
|
TOPMAKE = makefile.vms
|
|
|
|
SED = sed
|
|
DEPENDS = makefile.depends
|
|
MAKEDEPEND = makedepend
|
|
|
|
all:
|
|
|
|
clean:
|
|
$(DELETE) *.$(OBJ)$(GEN),*.$(EXE)$(GEN), $.mt$(GEN), *.mdf$(GEN)
|
|
|
|
include makefile.generic
|