blob: 67b6e9fca83cc83641933b9dfd6a4fd65e3db48e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Stefan Richter9f6d3c42010-07-22 11:58:05 +02002prefix = /usr
Stefan Richterb20d02e2010-07-22 11:58:05 +02003nosy-dump-version = 0.4
Stefan Richter9f6d3c42010-07-22 11:58:05 +02004
5CC = gcc
6
7all : nosy-dump
8
9nosy-dump : CFLAGS = -Wall -O2 -g
Stefan Richterb20d02e2010-07-22 11:58:05 +020010nosy-dump : CPPFLAGS = -DVERSION=\"$(nosy-dump-version)\" -I../../drivers/firewire
Stefan Richter9f6d3c42010-07-22 11:58:05 +020011nosy-dump : LDFLAGS = -g
12nosy-dump : LDLIBS = -lpopt
13
14nosy-dump : nosy-dump.o decode-fcp.o
15
16clean :
17 rm -rf *.o nosy-dump
18
19install :
20 install nosy-dump $(prefix)/bin/nosy-dump