]>
Commit | Line | Data |
---|---|---|
bcf1fa6b RR |
1 | # all that is to do |
2 | all:: checkneeds library | |
3 | clean:: clean_library clean_obj | |
4 | ||
5 | # now include definite rules | |
6 | LIB_BASE_DIR=$(GLOBAL_LIB_DIR) | |
7 | ||
8 | # include rules to create shared library | |
9 | include $(RULES_GENERIC)/slib | |
10 | # include rules to create shared objects | |
11 | include $(RULES_GENERIC)/sobj | |
12 | # include rule to check for defines needed | |
13 | include $(RULES_GENERIC)/needed | |
14 | ||
15 |