bcf1fa6bb4
Moved configure (once again) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@649 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
17 lines
286 B
Plaintext
17 lines
286 B
Plaintext
# create binary
|
|
|
|
binary1:: $(BIN_BASE_DIR)/$(BIN_TARGET)
|
|
|
|
$(BIN_BASE_DIR)/$(BIN_TARGET): $(BIN_OBJ)
|
|
@$(RM) -f $@
|
|
$(LINK) $(BIN_OBJ) -L. $(BIN_LINK) $(LINK_LIBS)
|
|
|
|
# defining dependencies
|
|
|
|
depend_binary1::
|
|
|
|
# cleaning all files
|
|
|
|
clean_binary1::
|
|
@$(RM) -f $(BIN_BASE_DIR)/$(BIN_TARGET)
|