Subversion Repositories gelsvn

Rev

Rev 2 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 58
Line 12... Line 12...
12
 
12
 
13
empty =
13
empty =
14
### The platform is determined by OS CPU and compiler 
14
### The platform is determined by OS CPU and compiler 
15
PLATFORM = ${OS}_${CPU}_${CXX}
15
PLATFORM = ${OS}_${CPU}_${CXX}
16
 
16
 
17
 
-
 
18
### Default target is release, unless debug is given as goal
17
### Default target is release, unless debug is given as goal
19
ifndef TARGET
18
ifndef TARGET
20
TARGET = release
19
TARGET = debug
21
endif
20
endif
22
 
21
 
23
### Concatenation of platform and target yields a string used as 
22
### Concatenation of platform and target yields a string used as 
24
### suffix of makefiles and in the name of the builddir.
23
### suffix of makefiles and in the name of the builddir.
25
PLATFORM_TARG = ${PLATFORM}_$(TARGET)
24
PLATFORM_TARG = ${PLATFORM}_$(TARGET)