7c78e7c702
/src/qt and /include/wx/qt now have stubs. Not everything compiles yet. But it's a start.. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@455 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
36 lines
1.2 KiB
Makefile
36 lines
1.2 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)/install/unix/setup/rules
|
|
RULES_GENERIC=$(RULES_DIR)/generic
|
|
SETUP_DIR=$(WXBASEDIR)/install/unix/setup/$(OS)
|
|
SHARE_DIR=$(WXBASEDIR)/install/unix/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
|
|
|