From ae84354b4062e4c4ceb3ce402468d6c095a760c2 Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Tue, 3 Jan 2017 22:19:24 +0100 Subject: Add multiplatform library for raw SCSI commands Several tools need to perform raw SCSI commands, and we need to support Linux, Windows and Mac OS, without pulling tons of dependencies to build it easily. This very simple library has no dependency and supports Linux. TODO: - windows - mac os Change-Id: I496f5ad2490bd3e96ad962d31cce4e511a523c3a --- utils/imxtools/scsitools/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils/imxtools/scsitools') diff --git a/utils/imxtools/scsitools/Makefile b/utils/imxtools/scsitools/Makefile index ed4bc88d0b..4bb6e585fe 100644 --- a/utils/imxtools/scsitools/Makefile +++ b/utils/imxtools/scsitools/Makefile @@ -1,6 +1,6 @@ DEFINES= -CC=gcc -LD=gcc +CC=$(PREFIX)gcc +LD=$(PREFIX)gcc CFLAGS=-g -std=c99 -W -Wall $(DEFINES) LDFLAGS=-lsgutils2 BINS=scsitool -- cgit