imxtools: introduce the new scsitool
[maemo-rb.git] / utils / imxtools / scsitools / Makefile
blobed4bc88d0b4abd464eb773fd7044a4f742455d84
1 DEFINES=
2 CC=gcc
3 LD=gcc
4 CFLAGS=-g -std=c99 -W -Wall $(DEFINES)
5 LDFLAGS=-lsgutils2
6 BINS=scsitool
8 all: $(BINS)
10 %.o: %.c
11 $(CC) $(CFLAGS) -c -o $@ $<
13 scsitool: scsitool.o misc.o
14 $(LD) -o $@ $^ $(LDFLAGS)
16 clean:
17 rm -fr *.o
19 veryclean:
20 rm -rf $(BINS)