blob: 294ef0e55aeb5325cf13f8cdc6c93dd0fae71f5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright (C) 1997 Aladdin Enterprises. All rights reserved.
# Unauthorized use, copying, and/or distribution prohibited.
# unixdefs.mak
# Definitions for compilation on Unix systems.
D=/
OBJ=o
C_=-c
I_=-I
II=-I
_I=
# The NULL macro after the space forces make to add a space after the -o
NULL=
O_=-o $(NULL)
XE=
CP_=cp -p
RM_=rm -f
RMN_=rm -f
|