Moved configure (once again) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@649 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
17 lines
278 B
Text
17 lines
278 B
Text
# create library
|
|
|
|
library:: $(LIB_BASE_DIR)/lib$(LIB_TARGET).a
|
|
|
|
$(LIB_BASE_DIR)/lib$(LIB_TARGET).a: $(LIB_OBJ)
|
|
@$(RM) -f $@
|
|
$(AR) rv $@ $(LIB_OBJ)
|
|
|
|
# defining dependencies
|
|
|
|
depend_library::
|
|
|
|
# cleaning all files
|
|
|
|
clean_library::
|
|
@$(RM) -f $(LIB_BASE_DIR)/lib$(LIB_TARGET).a
|
|
|