Blame view

tools/firewire/Makefile 394 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  # SPDX-License-Identifier: GPL-2.0
9f6d3c4b7   Stefan Richter   tools/firewire: a...
2
  prefix = /usr
b20d02e37   Stefan Richter   tools/firewire: n...
3
  nosy-dump-version = 0.4
9f6d3c4b7   Stefan Richter   tools/firewire: a...
4
5
6
7
8
9
  
  CC = gcc
  
  all : nosy-dump
  
  nosy-dump : CFLAGS = -Wall -O2 -g
b20d02e37   Stefan Richter   tools/firewire: n...
10
  nosy-dump : CPPFLAGS = -DVERSION=\"$(nosy-dump-version)\" -I../../drivers/firewire
9f6d3c4b7   Stefan Richter   tools/firewire: a...
11
12
13
14
15
16
17
18
19
20
  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