mirror of
https://github.com/reactos/documentation.git
synced 2024-11-30 06:50:31 +00:00
46dcfc526b
svn path=/trunk/rosdocs/; revision=3073
36 lines
533 B
Makefile
Executable File
36 lines
533 B
Makefile
Executable File
# Important
|
|
.EXPORT_ALL_VARIABLES:
|
|
|
|
# Windows is default host environment
|
|
ifeq ($(HOST),)
|
|
HOST = mingw32-windows
|
|
endif
|
|
|
|
#
|
|
# Choose various options
|
|
#
|
|
ifeq ($(HOST),mingw32-linux)
|
|
PREFIX=
|
|
EXE_POSTFIX :=
|
|
EXE_PREFIX := ./
|
|
DOSCLI =
|
|
SEP := /
|
|
endif
|
|
|
|
ifeq ($(HOST),mingw32-windows)
|
|
PREFIX =
|
|
EXE_PREFIX :=
|
|
EXE_POSTFIX := .exe
|
|
DOSCLI = yes
|
|
SEP := \$(EMPTY_VAR)
|
|
endif
|
|
|
|
CC = $(PREFIX)gcc
|
|
HOST_CC = gcc
|
|
TOOLS_PATH = $(PATH_TO_TOP)/tools
|
|
CP = $(TOOLS_PATH)/rcopy
|
|
RM = $(TOOLS_PATH)/rdel
|
|
RMDIR = $(TOOLS_PATH)/rrmdir
|
|
RMKDIR = $(TOOLS_PATH)/rmkdir
|
|
|