0
|
1 |
##########################################################################
|
|
2 |
#
|
|
3 |
# Makefile for ...
|
|
4 |
#
|
|
5 |
##########################################################################
|
|
6 |
include /home/penuser/3GNetworkEmulator/Makefile.conf
|
|
7 |
|
|
8 |
##########################################################################
|
|
9 |
#
|
|
10 |
# Definitions
|
|
11 |
#
|
|
12 |
##########################################################################
|
|
13 |
TARGET=../../bin/mncontroller
|
|
14 |
CFLAGS= -Wall -gstabs #-ftest-coverage -fprofile-arcs
|
|
15 |
INCLUDES= -I../include/
|
|
16 |
OBJECTS= CSMncontroller.o \
|
|
17 |
CSvcMncontroller.o \
|
|
18 |
mncontroller_svc.o \
|
|
19 |
mncontroller_svc_stub_impl.o \
|
|
20 |
mncontroller_xdr.o
|
|
21 |
|
|
22 |
LIBS=-L../../BinInternal/ -lproc -ldynamicsconfig -ldynwrap
|
|
23 |
|
|
24 |
##########################################################################
|
|
25 |
#
|
|
26 |
# Rules
|
|
27 |
#
|
|
28 |
##########################################################################
|
|
29 |
$(TARGET): $(OBJECTS) ../../BinInternal/libproc.a ../../BinInternal/libdynamicsconfig.a ../../BinInternal/libdynwrap.a
|
|
30 |
g++ $(CFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS)
|
|
31 |
|
|
32 |
%.o: %.c
|
|
33 |
gcc $(CFLAGS) $(INCLUDES) -c $< -o $@
|
|
34 |
|
|
35 |
%.o: %.cpp
|
|
36 |
g++ $(CFLAGS) $(INCLUDES) -c $< -o $@
|
|
37 |
|
|
38 |
clean:
|
|
39 |
rm -r -f $(TARGET) *.o *~ dyntmp* *.bb *.bbg *.gcov
|