Changeset 20492
- Timestamp:
- 07/08/07 16:06:08 (1 year ago)
- Files:
-
- juggler/trunk/modules/gadgeteer/drivers/driver.defs.mk.in (modified) (2 diffs)
- juggler/trunk/modules/gadgeteer/drivers/gadget.driver.mk.in (modified) (1 diff)
- juggler/trunk/modules/gadgeteer/plugins/gadget.plugin.mk.in (modified) (1 diff)
- juggler/trunk/modules/gadgeteer/plugins/plugin.defs.mk.in (modified) (2 diffs)
- juggler/trunk/modules/jackal/plugins/plugin.defs.mk.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/gadgeteer/drivers/driver.defs.mk.in
r19729 r20492 38 38 # Common code for driver DSOs. 39 39 # ----------------------------------------------------------------------------- 40 ifeq ($(BUILD_TYPE), dbg)41 BUILD_TYPE_EXT= _d42 endif43 44 40 LIBDIR_NAME?= lib$(LIBBITSUF) 45 41 … … 47 43 LIBDIR_BASE?= $(topdir)/$(LIBDIR_NAME) 48 44 49 DSO_DRIVER_SUBDIR= $(DRIVER_DIR_VERSION)/drivers 45 DRIVER_DIR= $(DRIVER_DIR_VERSION)/drivers 46 ifeq ($(BUILD_TYPE), dbg) 47 DSO_DRIVER_SUBDIR= $(DRIVER_DIR)/debug 48 else 49 DSO_DRIVER_SUBDIR= $(DRIVER_DIR) 50 endif 50 51 DSO_DRIVER_DIR= $(LIBDIR_BASE)/$(DSO_DRIVER_SUBDIR) 51 52 juggler/trunk/modules/gadgeteer/drivers/gadget.driver.mk.in
r20387 r20492 112 112 # ----------------------------------------------------------------------------- 113 113 ifeq ($(BUILD_TYPE), dbg) 114 BUILD_TYPE_EXT= _d114 BUILD_TYPE_EXT= 115 115 DEBUG_APP= TRUE 116 116 OPTIM_APP= FALSE juggler/trunk/modules/gadgeteer/plugins/gadget.plugin.mk.in
r20387 r20492 115 115 # ----------------------------------------------------------------------------- 116 116 ifeq ($(BUILD_TYPE), dbg) 117 BUILD_TYPE_EXT= _d117 BUILD_TYPE_EXT= 118 118 DEBUG_APP= TRUE 119 119 OPTIM_APP= FALSE juggler/trunk/modules/gadgeteer/plugins/plugin.defs.mk.in
r19729 r20492 38 38 # Common code for plugin DSOs. 39 39 # ----------------------------------------------------------------------------- 40 ifeq ($(BUILD_TYPE), dbg)41 BUILD_TYPE_EXT= _d42 endif43 44 40 LIBDIR_NAME?= lib$(LIBBITSUF) 45 41 … … 47 43 LIBDIR_BASE?= $(topdir)/$(LIBDIR_NAME) 48 44 49 DSO_PLUGIN_SUBDIR= $(PLUGIN_DIR_VERSION)/plugins 45 PLUGIN_DIR= $(PLUGIN_DIR_VERSION)/plugins 46 ifeq ($(BUILD_TYPE), dbg) 47 DSO_PLUGIN_SUBDIR= $(PLUGIN_DIR)/debug 48 else 49 DSO_PLUGIN_SUBDIR= $(PLUGIN_DIR) 50 endif 50 51 DSO_PLUGIN_DIR= $(LIBDIR_BASE)/$(DSO_PLUGIN_SUBDIR) 51 52 juggler/trunk/modules/jackal/plugins/plugin.defs.mk.in
r19729 r20492 38 38 # Common code for plug-in DSOs. 39 39 # ----------------------------------------------------------------------------- 40 ifeq ($(BUILD_TYPE), dbg)41 BUILD_TYPE_EXT= _d42 endif43 44 40 LIBDIR_NAME?= lib$(LIBBITSUF) 45 41 … … 47 43 LIBDIR_BASE?= $(topdir)/$(LIBDIR_NAME) 48 44 49 DSO_PLUGIN_SUBDIR= $(PLUGIN_DIR_VERSION)/plugins 45 PLUGIN_DIR= $(PLUGIN_DIR_VERSION)/plugins 46 ifeq ($(BUILD_TYPE), dbg) 47 DSO_PLUGIN_SUBDIR= $(PLUGIN_DIR)/debug 48 else 49 DSO_PLUGIN_SUBDIR= $(PLUGIN_DIR) 50 endif 50 51 DSO_PLUGIN_DIR= $(LIBDIR_BASE)/$(DSO_PLUGIN_SUBDIR) 51 52
