mdebug

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 77a12a396035a98579e6541e055e590e5187bfae
parent b23181fe9ed44b4cd3304332732d592ac74c7849
Author: Brian Swetland <swetland@frotz.net>
Date:   Thu,  6 Aug 2015 16:56:53 -0700

build: remove obsolete submakefiles

Diffstat:
Dagents/module.mk | 33---------------------------------
Dtools/module.mk | 52----------------------------------------------------
2 files changed, 0 insertions(+), 85 deletions(-)

diff --git a/agents/module.mk b/agents/module.mk @@ -1,33 +0,0 @@ - -M_NAME := agent-lpc15xx -M_CONFIG := ARCH_LPC15xx=1 -M_ROMBASE := 0x00000000 -M_ROMSIZE := 0x00010000 -M_RAMBASE := 0x02000400 -M_RAMSIZE := 0x00000400 -M_OBJS := agents/lpc13xx_lpc15xx.o -$(call build-target-agent) - -M_NAME := agent-lpc13xx -M_ROMBASE := 0x00000000 -M_ROMSIZE := 0x00008000 -M_RAMBASE := 0x10000400 -M_RAMSIZE := 0x00000400 -M_OBJS := agents/lpc13xx_lpc15xx.o -$(call build-target-agent) - -M_NAME := agent-stm32f4xx -M_ROMBASE := 0x00000000 -M_ROMSIZE := 0x00100000 -M_RAMBASE := 0x20000400 -M_RAMSIZE := 0x00000400 -M_OBJS := agents/stm32fxxx.o -$(call build-target-agent) - -M_NAME := agent-lpclink2 -M_ROMBASE := 0x00000000 -M_ROMSIZE := 0x00100000 -M_RAMBASE := 0x10080400 -M_RAMSIZE := 0x10000400 -M_OBJS := agents/lpc43xx-spifi.o -$(call build-target-agent) diff --git a/tools/module.mk b/tools/module.mk @@ -1,52 +0,0 @@ -$(call start-module-mk) - -M_NAME := debugger -M_OBJS := tools/debugger.o -M_OBJS += tools/debugger-core.o -M_OBJS += tools/debugger-commands.o -M_OBJS += tools/rswdp.o -M_OBJS += tools/linenoise.o -M_OBJS += tools/usb.o -M_OBJS += tools/socket.o -M_OBJS += tools/gdb-bridge.o -M_OBJS += tools/lkdebug.o -M_OBJS += tools/swo.o -M_OBJS += tools/websocket.o -M_OBJS += tools/sha1.o -M_OBJS += tools/base64.o -M_OBJS += out/debugger-builtins.o -$(call build-host-executable) - -out/debugger-builtins.c: $(AGENTS) bin/mkbuiltins - @mkdir -p out - ./bin/mkbuiltins $(AGENTS) > $@ - -M_NAME := stm32boot -M_OBJS := tools/stm32boot.o -$(call build-host-executable) - -ifeq ($(UNAME),Linux) -M_NAME := usbmon -M_OBJS := tools/usbmon.o -$(call build-host-executable) -endif - -M_NAME := usbtest -M_OBJS := tools/usbtest.o tools/usb.o -$(call build-host-executable) - -M_NAME := bless-lpc -M_OBJS := tools/bless-lpc.o -$(call build-host-executable) - -M_NAME := lpcboot -M_OBJS := tools/lpcboot.o tools/usb.o -$(call build-host-executable) - -M_NAME := uconsole -M_OBJS := tools/uconsole.o tools/usb.o -$(call build-host-executable) - -M_NAME := mkbuiltins -M_OBJS := tools/mkbuiltins.o -$(call build-host-executable)