mirror of
https://github.com/reactos/documentation.git
synced 2024-11-23 03:29:56 +00:00
7d72481c5e
Don't spread our few documentation all over the place. Collect all single-file API documentation in the "articles" folder, keep the audit stuff in "audit" and move the DocBook-based RosDocs system into "documentation" as well. Remove my definitely obsolete MediaWiki Upgrade Guide. This one isn't relevant anymore. svn path=/trunk/documentation/; revision=67111
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
|
|
|