mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 18:33:18 +08:00
d19754567d
* .h include only the strict minimum for their own parsing * this forces all files to include explicitment their needs and not count on far streched dependencies * this helps Makefile to rebuild only the minimum * according to this rule, most standalone .h are now gone * big app.h is gone * remove seldom __cplusplus, if c++ happens, everything will have to be done properly anyway * all unrequired include were removed * split common/ into common/ (client+arm) and common_arm/ (os+bootloader) * bring zlib to common/ * bring stuff not really/not yet used in common back to armsrc/ or client/ * bring liblua into client/ * bring uart into client/ * move some portions of code around (dbprint, protocols,...) * rename unused files into *_disabled.[ch] to make it explicit * rename soft Uarts between 14a, 14b and iclass, so a standalone could use several without clash * remove PrintAndLogDevice * move deprecated-hid-flasher from client to tools * Makefiles * treat deps in armsrc/ as in client/ * client: stop on warning (-Werror), same as for armsrc/ Tested on: * all standalone modes * Linux
50 lines
1.4 KiB
Makefile
50 lines
1.4 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
|
|
CXX=g++
|
|
#COMMON_FLAGS = -m32
|
|
|
|
OBJDIR = obj
|
|
|
|
LDLIBS = -lreadline -lpthread
|
|
CFLAGS = -std=gnu99 -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O3
|
|
ifeq ($(platform),Darwin)
|
|
LDLIBS += -lusb-1.0
|
|
else
|
|
LDLIBS += -lusb
|
|
endif
|
|
|
|
LDFLAGS = $(COMMON_FLAGS)
|
|
CXXFLAGS =
|
|
|
|
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
|