mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-14 15:36:34 +00:00
In the SunOS 4 days, the system cc apparently couldn't compile the lp* files, so there was an arrangement to use an `ANSICC`, which was just `gcc`, to build those files. We no longer have this issue.
40 lines
941 B
Plaintext
Executable File
40 lines
941 B
Plaintext
Executable File
# Default values for Maiko makefile variables
|
|
# These get overridden by OS and hardware-specific stuff
|
|
# in sub-makefiles
|
|
|
|
SRCDIR = ../src/
|
|
INCDIR = ../inc/
|
|
INCLUDEDIR = ../include/
|
|
LIBDIR = ../lib
|
|
BINDIR = ./
|
|
RELDIR = ../RELEASE/
|
|
MAIN = _main
|
|
RANLIB = ranlib
|
|
AR = ar rcv
|
|
|
|
# Compiler flags
|
|
CLANG_CFLAGS = -std=gnu99 -fno-strict-aliasing -fwrapv
|
|
GCC_CFLAGS = -std=gnu99 -fno-strict-aliasing -fwrapv
|
|
DEVSTUDIO_CFLAGS = -std=gnu99 -fno-strict-aliasing
|
|
|
|
# for the files that need to be included in byte-swapped implementations:
|
|
BYTESWAPFILES =
|
|
SXHASHFILE =
|
|
BITBLTFILE =
|
|
DLPIFILES =
|
|
|
|
# for files needed by X windows version
|
|
XFILES =
|
|
|
|
# for files needed by color (actually files NOT needed by X)
|
|
COLORFILES =
|
|
|
|
# Flags to include inthe linking of various S/W
|
|
# LDFLAGS - in emulator itself (e.g., ldesingle)
|
|
# LDELDFLAGS - in "lde" unix-comm forker.
|
|
# LDEETHERLDFLAGS - in "ldeether" ethernet kick-start
|
|
LDFLAGS =
|
|
LDELDFLAGS =
|
|
LDEETHERLDFLAGS =
|
|
|