2005-06-28 18:56:49 +00:00
|
|
|
# Common build rules, used by the sub modules and their module.mk files
|
|
|
|
|
|
|
|
# Copy the list of objects to a new variable. The name of the new variable
|
|
|
|
# contains the module name, a trick we use so we can keep multiple different
|
|
|
|
# module object lists, one for each module.
|
|
|
|
MODULE_OBJS-$(MODULE) := $(MODULE_OBJS)
|
|
|
|
|
|
|
|
# If not building as a plugin, add the object files to the main OBJS list
|
2005-06-28 23:18:16 +00:00
|
|
|
#OBJS += $(MODULE_LIB-$(MODULE))
|
|
|
|
OBJS += $(MODULE_OBJS)
|