1 |
# |
2 |
# Makefile.target |
3 |
# |
4 |
# this file defines the default target and its components |
5 |
# for the current build directory; there must be a target |
6 |
# named 'user_target' (see Makefile.defaults) somewhere at |
7 |
# the head of the chain, otherwise there aren't really any |
8 |
# constraints ... |
9 |
# |
10 |
|
11 |
user_target:: libCom.o |
12 |
#user_target:: libCom1.o |
13 |
|
14 |
# |
15 |
# Define targets for the libCom.o |
16 |
# |
17 |
|
18 |
libCom.o: $(OBJS0) |
19 |
@ echo "linking libCom.o for $(DST)" |
20 |
@ $(RM) $@ |
21 |
@ $(LD) -r $(OBJS0) -o $@ |
22 |
|
23 |
# |
24 |
# Define targets for the libCom1.o |
25 |
# |
26 |
|
27 |
#libCom1.o: $(OBJS1) |
28 |
# @ echo "linking libCom1.o for $(DST)" |
29 |
# @ $(RM) $@ |
30 |
# @ $(LD) $(OBJS1) -o $@ |
31 |
|
32 |
# |
33 |
# END of Makefile.target |
34 |
# |
35 |
# Dependency list for .o files - automatically generated!! |
36 |
# reference ./Makefile & ../Makefile.defaults |
37 |
# |
38 |
|