documentation/rosdocs/rules.mk
Colin Finck 7d72481c5e [DOCUMENTATION]
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
2015-04-09 11:54:07 +00:00

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