bcf1fa6bb4
Moved configure (once again) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@649 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
17 lines
292 B
Plaintext
17 lines
292 B
Plaintext
# create binary
|
|
|
|
binary2:: $(BIN_BASE_DIR)/$(BIN2_TARGET)
|
|
|
|
$(BIN_BASE_DIR)/$(BIN2_TARGET): $(BIN2_OBJ)
|
|
@$(RM) -f $@
|
|
$(LINK) $(BIN2_OBJ) -L. $(BIN2_LINK) $(LINK_LIBS)
|
|
|
|
# defining dependencies
|
|
|
|
depend_binary2::
|
|
|
|
# cleaning all files
|
|
|
|
clean_binary2::
|
|
@$(RM) -f $(BIN_BASE_DIR)/$(BIN2_TARGET)
|