bcf1fa6bb4
Moved configure (once again) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@649 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
#the calling Makefile MUST set OS and RULE
|
|
#RULE can be one of the following:
|
|
# bin for one local binary
|
|
# bin2 for two local binaries
|
|
# gbin for one global binary
|
|
# gbin2 for two global binaries
|
|
# lib for a local library
|
|
# libbin for a local library and one local binary
|
|
# libgbin for a local library and one global binary
|
|
# glib for a global library
|
|
# glibbin for a global library and one local binary
|
|
# glibgbin for a global library and one global binary
|
|
# gslib for a global shared library
|
|
|
|
# no need to edit below this line !!!!
|
|
|
|
RULES_DIR=$(WXBASEDIR)/setup/rules
|
|
RULES_GENERIC=$(RULES_DIR)/generic
|
|
SETUP_DIR=$(WXBASEDIR)/setup/$(OS)
|
|
SHARE_DIR=$(WXBASEDIR)/setup/shared
|
|
|
|
SRCDIR=$(WXBASEDIR)/src
|
|
UTILS=$(WXBASEDIR)/utils
|
|
SAMPLES=$(WXBASEDIR)/samples
|
|
OTHER=$(WXBASEDIR)/other
|
|
|
|
# now include the global setting
|
|
include $(SETUP_DIR)/maketmpl
|
|
|
|
# now include the rule needed
|
|
include $(RULES_DIR)/$(RULE)
|
|
|
|
# now include the global objects
|
|
include $(RULES_GENERIC)/globals
|
|
|