diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2017-01-03 22:19:24 +0100 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2017-01-07 15:52:33 +0100 |
| commit | ae84354b4062e4c4ceb3ce402468d6c095a760c2 (patch) | |
| tree | 892a3d6ad719dc4d45790eba5011b4aa6f7102f8 /utils/imxtools | |
| parent | 1728565e243300b5f50d56399931fa19169031d5 (diff) | |
| download | rockbox-ae84354b4062e4c4ceb3ce402468d6c095a760c2.zip rockbox-ae84354b4062e4c4ceb3ce402468d6c095a760c2.tar.gz rockbox-ae84354b4062e4c4ceb3ce402468d6c095a760c2.tar.bz2 rockbox-ae84354b4062e4c4ceb3ce402468d6c095a760c2.tar.xz | |
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
Diffstat (limited to 'utils/imxtools')
| -rw-r--r-- | utils/imxtools/scsitools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/imxtools/scsitools/Makefile b/utils/imxtools/scsitools/Makefile index ed4bc88..4bb6e58 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 |