forked from len0rd/rockbox
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
This commit is contained in:
parent
1728565e24
commit
ae84354b40
4 changed files with 415 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue