mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
b20d02e37e
Since version 0.3 from Kristian's repository, there should actually be no change in functionality except for the x86-64 fix. Nevertheless, make it distinct from the original nosy-dump --- just in case and also because of potential future changes. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
19 lines
359 B
Makefile
19 lines
359 B
Makefile
prefix = /usr
|
|
nosy-dump-version = 0.4
|
|
|
|
CC = gcc
|
|
|
|
all : nosy-dump
|
|
|
|
nosy-dump : CFLAGS = -Wall -O2 -g
|
|
nosy-dump : CPPFLAGS = -DVERSION=\"$(nosy-dump-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
|