16 lines
358 B
Plaintext
16 lines
358 B
Plaintext
|
# all that is to do
|
||
|
all:: checkneeds library
|
||
|
clean:: clean_library clean_obj
|
||
|
|
||
|
# now include definite rules
|
||
|
LIB_BASE_DIR=$(GLOBAL_LIB_DIR)
|
||
|
|
||
|
# include rules to create shared library
|
||
|
include $(RULES_GENERIC)/slib
|
||
|
# include rules to create shared objects
|
||
|
include $(RULES_GENERIC)/sobj
|
||
|
# include rule to check for defines needed
|
||
|
include $(RULES_GENERIC)/needed
|
||
|
|
||
|
|