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