mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 07:50:04 +00:00
20 lines
339 B
Makefile
20 lines
339 B
Makefile
|
version = 0.3
|
||
|
prefix = /usr
|
||
|
|
||
|
CC = gcc
|
||
|
|
||
|
all : nosy-dump
|
||
|
|
||
|
nosy-dump : CFLAGS = -Wall -O2 -g
|
||
|
nosy-dump : CPPFLAGS = -DVERSION=\"$(version)\" -I../../drivers/firewire
|
||
|
nosy-dump : LDFLAGS = -g
|
||
|
nosy-dump : LDLIBS = -lpopt
|
||
|
|
||
|
nosy-dump : nosy-dump.o decode-fcp.o
|
||
|
|
||
|
clean :
|
||
|
rm -rf *.o nosy-dump
|
||
|
|
||
|
install :
|
||
|
install nosy-dump $(prefix)/bin/nosy-dump
|