0
|
1 |
###############################################################################
|
|
2 |
#
|
|
3 |
# Makefile for 3GNE/BuildTools directory.
|
|
4 |
#
|
|
5 |
###############################################################################
|
|
6 |
|
|
7 |
###############################################################################
|
|
8 |
#
|
|
9 |
# Definitions
|
|
10 |
#
|
|
11 |
###############################################################################
|
|
12 |
include /home/penuser/3GNetworkEmulator/Makefile.conf
|
|
13 |
TOOLS=
|
|
14 |
|
|
15 |
###############################################################################
|
|
16 |
#
|
|
17 |
# Rules
|
|
18 |
#
|
|
19 |
###############################################################################
|
|
20 |
build:
|
|
21 |
for dir in ${TOOLS}; do \
|
|
22 |
(cd $$dir; ${MAKE} build); \
|
|
23 |
done
|
|
24 |
|
|
25 |
clean:
|
|
26 |
for dir in ${TOOLS}; do \
|
|
27 |
(cd $$dir; ${MAKE} clean); \
|
|
28 |
done
|
|
29 |
rm -r -f *~
|
|
30 |
|