mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
360a5b1b3c
This project compiles on Ubuntu with libusb-dev installed. Lets see if it compiles on OSX....
53 lines
1.7 KiB
Makefile
53 lines
1.7 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.
|
|
#-----------------------------------------------------------------------------
|
|
include ../../common/Makefile.common
|
|
|
|
CC=gcc
|
|
CXX=g++
|
|
#COMMON_FLAGS = -m32
|
|
|
|
VPATH = ../../common
|
|
OBJDIR = obj
|
|
|
|
ifeq ($(platform),Darwin)
|
|
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb-1.0 -lreadline -lpthread
|
|
CFLAGS = -std=gnu99 -I. -I../include -I../common -I/usr/local/include -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O3
|
|
else
|
|
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb -lreadline -lpthread
|
|
CFLAGS = -std=gnu99 -I. -I../include -I../common -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O3
|
|
endif
|
|
|
|
LDFLAGS = $(COMMON_FLAGS)
|
|
CXXFLAGS =
|
|
QTLDLIBS =
|
|
|
|
RM = rm -f
|
|
BINS = flasher
|
|
CLEAN = flasher flasher.exe $(OBJDIR)/*.o *.o
|
|
|
|
all: $(BINS)
|
|
|
|
flasher: $(OBJDIR)/flash.o $(OBJDIR)/flasher.o $(OBJDIR)/proxusb.o
|
|
$(CXX) $(CXXFLAGS) $^ $(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
|