Subversion Repositories gelsvn

Rev

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

Rev 138 Rev 178
Line 14... Line 14...
14
 
14
 
15
### BUILDDIR is the directory where the compilation for a specific 
15
### BUILDDIR is the directory where the compilation for a specific 
16
### platform and target combination takes place.
16
### platform and target combination takes place.
17
BUILDDIR						= ./${BUILD}/$(PLATFORM_TARG)
17
BUILDDIR						= ./${BUILD}/$(PLATFORM_TARG)
18
 
18
 
19
### LIBDIR is the directory where we stick .a files pertaining to 
-
 
20
### the specific combination of platform and target.
-
 
21
LIBDIR							= ${SOURCEROOT}/lib/${PLATFORM_TARG}
-
 
22
 
-
 
23
### BINDIR is the directory where binary files are put.
-
 
24
BINDIR							= ${SOURCEROOT}/bin
-
 
25
 
-
 
26
### Append path to compiler flags
19
### Append path to compiler flags
27
CXXFLAGS						+= -I${SOURCEROOT}/src -I${SOURCEROOT}/include
20
CXXFLAGS						+= -I${SOURCEROOT}/src 
28
 
21
 
29
### Generate list of source files.
22
### Generate list of source files.
30
sources							= $(shell ls *.cpp)
23
sources							= $(shell ls *.cpp)
31
### Generate list if object files from list of sources.
24
### Generate list if object files from list of sources.
32
objects							= $(sources:.cpp=.o)
25
objects							= $(sources:.cpp=.o)