0
|
1 |
##########################################################################
|
|
2 |
#
|
|
3 |
# Makefile for ...
|
|
4 |
#
|
|
5 |
##########################################################################
|
|
6 |
|
|
7 |
##########################################################################
|
|
8 |
#
|
|
9 |
# Definitions
|
|
10 |
#
|
|
11 |
##########################################################################
|
|
12 |
TARGET= ../../bin/hostexecuteasync
|
|
13 |
INCLUDES= -I../include
|
|
14 |
OBJECTS= CSHostexecuteasync.o \
|
|
15 |
CSvcHostexecuteasync.o \
|
|
16 |
hostexecuteasync_svc.o \
|
|
17 |
hostexecuteasync_svc_stub_impl.o \
|
|
18 |
hostexecuteasync_xdr.o
|
|
19 |
|
|
20 |
|
|
21 |
LIBS= -L../../BinInternal -lproc
|
|
22 |
|
|
23 |
##########################################################################
|
|
24 |
#
|
|
25 |
# Rules
|
|
26 |
#
|
|
27 |
##########################################################################
|
|
28 |
$(TARGET): $(OBJECTS) ../../BinInternal/libproc.a
|
|
29 |
g++ -gstabs -Wall -o $(TARGET) $(OBJECTS) $(LIBS)
|
|
30 |
|
|
31 |
%.o: %.c
|
|
32 |
gcc -gstabs -Wall $(INCLUDES) -c $< -o $@
|
|
33 |
|
|
34 |
%.o: %.cpp
|
|
35 |
g++ -gstabs -Wall $(INCLUDES) -c $< -o $@
|
|
36 |
|
|
37 |
clean:
|
|
38 |
rm -r -f $(TARGET) *.o *~ dyntmp*
|