From 11da9d23fe323ce452fcd04a10a0ddf78eaa63ea Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Wed, 12 Jun 2013 19:46:04 +0200 Subject: imxtools: move hwemul to its own directory The hwemul is only partly imx specific: the stub is stmp specific but could be ported to other targets, the computer side and the protocol are mostly stmp independent (or should be). Change-Id: If88febffe591b0de86ea11cb740455ba20ddc401 --- utils/imxtools/hwemul/tools/Makefile | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 utils/imxtools/hwemul/tools/Makefile (limited to 'utils/imxtools/hwemul/tools/Makefile') diff --git a/utils/imxtools/hwemul/tools/Makefile b/utils/imxtools/hwemul/tools/Makefile deleted file mode 100644 index 3466a4e776..0000000000 --- a/utils/imxtools/hwemul/tools/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -CC=gcc -AR=ar -HWEMUL_LIB_DIR=../lib -CFLAGS=-W -Wall -O2 `pkg-config --cflags libusb-1.0` -std=c99 -g -I$(HWEMUL_LIB_DIR) -LDFLAGS=`pkg-config --libs libusb-1.0` -lreadline -EXEC=hwemul_tool -HWEMUL_LIB=$(HWEMUL_LIB_DIR)/libhwemul.a -SRC=$(wildcard *.c) -OBJ=$(SRC:.c=.o) - -all: $(EXEC) - -%.o: %.c - $(CC) $(CFLAGS) -c -o $@ $< - -hwemul_tool: hwemul_tool.o $(HWEMUL_LIB) - $(CC) -o $@ $^ $(LDFLAGS) - -clean: - rm -rf $(OBJ) $(LIB) - - -- cgit v1.2.3