mirror of
https://github.com/open-simh/simtools.git
synced 2026-02-12 02:48:46 +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.
28 lines
328 B
Makefile
28 lines
328 B
Makefile
# -*- Makefile -*-
|
|
|
|
# Makefile for Tru64 (DEC/OSF1)
|
|
#
|
|
|
|
# Start with generic unix
|
|
|
|
include makefile.unixdefs
|
|
|
|
# Use gcc
|
|
|
|
CC=gcc
|
|
|
|
TOPMAKE = makefile.solaris
|
|
|
|
include makefile.generic
|
|
|
|
CCFLAGS = -O4 -g
|
|
|
|
# I don't think we have libedit
|
|
|
|
DEFS =
|
|
LDLIBS =
|
|
|
|
TOPMAKE = makefile.tru64
|
|
|
|
include makefile.generic
|