proxmark3/tools/deprecated-hid-flasher/flasher/Makefile
2019-08-19 21:50:16 +03:00

48 lines
1.3 KiB
Makefile

#-----------------------------------------------------------------------------
# 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
LD=gcc
OBJDIR = obj
LDLIBS =
CFLAGS ?= -Wall -Werror -g -O3
CFLAGS += -std=gnu99
ifeq ($(platform),Darwin)
LDLIBS += -lusb-1.0
else
LDLIBS += -lusb
endif
RM = rm -f
BINS = pm3-hid-flasher
CLEAN = pm3-hid-flasher pm3-hid-flasher.exe $(OBJDIR)/*.o
all: $(BINS)
pm3-hid-flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(OBJDIR)/proxusb.o
$(LD) $(LDFLAGS) $^ $(LDLIBS) -o $@
$(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