forked from ghaerr/microwindows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPath.rules
More file actions
36 lines (31 loc) · 1.11 KB
/
Copy pathPath.rules
File metadata and controls
36 lines (31 loc) · 1.11 KB
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
##############################################################################
# Microwindows Path rules Makefile
# Copyright (c) 2003 by Koninklijke Philips Electronics N.V.
##############################################################################
# set the locations of the bin and lib output directories
ifndef MW_DIR_BIN
MW_DIR_BIN := $(MW_DIR_SRC)/bin
# NOTE: In a future release this may change to: $(MW_DIR_SRC)/../bin
endif
ifndef MW_DIR_LIB
MW_DIR_LIB := $(MW_DIR_SRC)/lib
# NOTE: In a future release this may change to: $(MW_DIR_SRC)/../lib
endif
# The location to be used during the build for object and other
# generated files
ifndef MW_DIR_OBJ
MW_DIR_OBJ := $(MW_DIR_SRC)/obj
# NOTE: In a future release this may change to: $(MW_DIR_SRC)/../obj
endif
# Configuration file.
ifndef CONFIG
CONFIG = $(MW_DIR_SRC)/config
endif
# Catch Makefile errors.
# Makefiles that include this file must define MW_DIR_RELATIVE
ifeq ($(origin MW_DIR_RELATIVE),undefined)
$(error MW_DIR_RELATIVE is not set)
endif
ifeq ($(wildcard $(MW_DIR_SRC)/$(MW_DIR_RELATIVE)Makefile),)
$(error MW_DIR_RELATIVE is wrong: $(MW_DIR_RELATIVE))
endif