equal
deleted
inserted
replaced
|
1 ########################################################################## |
|
2 # |
|
3 # Makefile for ... |
|
4 # |
|
5 ########################################################################## |
|
6 |
|
7 ########################################################################## |
|
8 # |
|
9 # Definitions |
|
10 # |
|
11 ########################################################################## |
|
12 include /home/penuser/3GNetworkEmulator/Makefile.conf |
|
13 |
|
14 TARGET=../../bin/facontroller |
|
15 INCLUDES= -I../include/ |
|
16 OBJECTS= CSFacontroller.o \ |
|
17 CSvcFacontroller.o \ |
|
18 facontroller_svc.o \ |
|
19 facontroller_svc_stub_impl.o \ |
|
20 facontroller_xdr.o |
|
21 |
|
22 LIBS=-L../../BinInternal -lproc -ldynamicsconfig -lalias -lintalloc -ldynwrap |
|
23 |
|
24 ########################################################################## |
|
25 # |
|
26 # Rules |
|
27 # |
|
28 ########################################################################## |
|
29 $(TARGET): $(OBJECTS) ../../BinInternal/libproc.a ../../BinInternal/libdynamicsconfig.a ../../BinInternal/libalias.a ../../BinInternal/libintalloc.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* |