equal
deleted
inserted
replaced
|
1 ########################################################################## |
|
2 # |
|
3 # Makefile for ... |
|
4 # |
|
5 ########################################################################## |
|
6 |
|
7 ########################################################################## |
|
8 # |
|
9 # Definitions |
|
10 # |
|
11 ########################################################################## |
|
12 TARGET= ../../../../BuildTools/rpcgen.3gne.linux |
|
13 CFLAGS= -g -Wall -DWIN32_TARGET |
|
14 INCLUDES= -I..\rpc |
|
15 OBJECTS= rpc_clnt.o \ |
|
16 rpc_cout.o \ |
|
17 rpc_hout.o \ |
|
18 rpc_main.o \ |
|
19 rpc_pars.o \ |
|
20 rpc_scan.o \ |
|
21 rpc_svco.o \ |
|
22 rpc_util.o \ |
|
23 ae_component_rpc.o |
|
24 |
|
25 LIBS= -lpthread |
|
26 |
|
27 ########################################################################## |
|
28 # |
|
29 # Rules |
|
30 # |
|
31 ########################################################################## |
|
32 $(TARGET): $(OBJECTS) |
|
33 gcc $(CFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS) |
|
34 |
|
35 %.o: %.c |
|
36 gcc $(CFLAGS) $(INCLUDES) -c $< -o $@ |
|
37 |
|
38 %.o: %.cpp |
|
39 g++ $(CFLAGS) $(INCLUDES) -c $< -o $@ |
|
40 |
|
41 clean: |
|
42 rm -r -f $(TARGET) *.o *~ |