]>
Commit | Line | Data |
---|---|---|
bcf1fa6b RR |
1 | # all that is to do |
2 | all:: checkneeds library binary | |
3 | depend:: depend_library depend_binary | |
4 | clean:: clean_library clean_obj clean_binary | |
5 | ||
6 | # now include definite rules | |
7 | LIB_BASE_DIR=$(GLOBAL_LIB_DIR) | |
8 | BIN_BASE_DIR=$(GLOBAL_BIN_DIR) | |
9 | ||
10 | # include rules to create library | |
11 | include $(RULES_GENERIC)/lib | |
12 | # include rules to create binary | |
13 | include $(RULES_GENERIC)/mkbin1 | |
14 | # include rules to create objects | |
15 | include $(RULES_GENERIC)/obj | |
16 | # include rule to check for defines needed | |
17 | include $(RULES_GENERIC)/needed | |
18 |