-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathos.mif
82 lines (67 loc) · 1.46 KB
/
os.mif
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
############################################
# COSAS DEPENDENDIENTES DEL SITEMA OPERATIVO
############################################
# SYS = sistema host
# TARGET_SYS = sistema target
!ifndef OS_MIF
OS_MIF=1
#!ifndef %OS
!ifdef __UNIX__
%OS=UNIX
SYS=unx
!endif
!ifdef __LINUX__
%OS=LINUX
SYS=lin
!endif
!ifdef __MSDOS__
%OS=DOS
SYS=dos
!endif
!ifdef __NT__
%OS=WINDOWS
SYS=win
!endif
#!endif
!ifndef TARGET_SYS
TARGET_SYS=$(SYS)
!endif
WATCOM_BT_LIN = linux
WATCOM_BT_WIN = nt
WATCOM_BT_DOS = dos
WATCOM_BT = $(WATCOM_BT_$(TARGET_SYS))
WLINK_TARGET_SYS_LIN = system linux option noextension
WLINK_TARGET_SYS_WIN = system nt
WLINK_TARGET_SYS_DOS = system dos4g
WLINK_TARGET_SYS = $(WLINK_TARGET_SYS_$(TARGET_SYS))
EXE_SUFFIX_LIN=
EXE_SUFFIX_WIN=.exe
EXE_SUFFIX_DOS=.exe
EXE_SUFFIX = $(EXE_SUFFIX_$(TARGET_SYS))
EXE_SUFFIX_HOST = $(EXE_SUFFIX_$(SYS))
# Se definen varias variables que dependen del SO donde se compila
# COPY -> El comando que se usa para copiar cosas con ``wmake install``
# DELETE -> El comando que se usa para borrar cuando se hace ``wmake clean``
# ROOT -> Ruta raiz actual donde se lanza el wmake
# SEP -> Separador de directorios
!ifdef __UNIX__
COPY = cp
DELETE = rm
SEP = /
!else #!__UNIX__
COPY = copy /Y
# (/Y sirve para sobreescribir archivos sin pedir confirmaci¢n).
DELETE = del
SEP = \
!ifdef %USERPROFILE
%HOME=$(%USERPROFILE)
!else
%HOME=$(SEP)
!endif
!endif # __UNIX__
!ifdef __NT__
START = start "" /wait
!else
START =
!endif
!endif # OS_MIF