2015-02-04 05:22:39 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
# at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
# the license.
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
CC=gcc
|
2019-08-17 17:03:15 +08:00
|
|
|
LD=gcc
|
2015-02-04 05:22:39 +08:00
|
|
|
|
|
|
|
OBJDIR = obj
|
|
|
|
|
2019-08-17 17:03:15 +08:00
|
|
|
LDLIBS =
|
|
|
|
CFLAGS ?= -Wall -Werror -g -O3
|
|
|
|
CFLAGS += -std=gnu99
|
2017-01-21 02:25:42 +08:00
|
|
|
ifeq ($(platform),Darwin)
|
2019-04-26 06:04:32 +08:00
|
|
|
LDLIBS += -lusb-1.0
|
2017-01-21 02:25:42 +08:00
|
|
|
else
|
2019-04-26 06:04:32 +08:00
|
|
|
LDLIBS += -lusb
|
2017-01-21 02:25:42 +08:00
|
|
|
endif
|
2015-02-04 05:22:39 +08:00
|
|
|
|
|
|
|
RM = rm -f
|
2019-08-17 17:03:15 +08:00
|
|
|
BINS = pm3-hid-flasher
|
|
|
|
CLEAN = pm3-hid-flasher pm3-hid-flasher.exe $(OBJDIR)/*.o
|
2015-02-04 05:22:39 +08:00
|
|
|
|
|
|
|
all: $(BINS)
|
|
|
|
|
2019-08-17 17:03:15 +08:00
|
|
|
pm3-hid-flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(OBJDIR)/proxusb.o
|
|
|
|
$(LD) $(LDFLAGS) $^ $(LDLIBS) -o $@
|
2015-02-04 05:22:39 +08:00
|
|
|
|
|
|
|
$(OBJDIR)/%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(RM) $(CLEAN)
|
|
|
|
|
|
|
|
# must be run as root
|
|
|
|
install_kext: Info.plist
|
|
|
|
mkdir -p /System/Library/Extensions/Proxmark3.kext/Contents
|
|
|
|
cp Info.plist /System/Library/Extensions/Proxmark3.kext/Contents
|
|
|
|
chown -R root:wheel /System/Library/Extensions/Proxmark3.kext
|
|
|
|
chmod 755 /System/Library/Extensions/Proxmark3.kext /System/Library/Extensions/Proxmark3.kext/Contents
|
|
|
|
chmod 644 /System/Library/Extensions/Proxmark3.kext/Contents/Info.plist
|
|
|
|
rm -rf /System/Library/Caches/com.apple.kext.caches
|
|
|
|
touch /System/Library/Extensions
|
|
|
|
@echo "*** You may need to reboot for the kext to take effect."
|
|
|
|
|
|
|
|
.PHONY: all clean
|