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