mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Makefile: remove WINBINS/WINEXES, ProxSpace doesn't use them
This commit is contained in:
parent
9b9120b0f2
commit
9cec581f1c
2 changed files with 2 additions and 4 deletions
|
@ -282,8 +282,7 @@ ifeq "$(SUPPORTS_AVX512)" "True"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
BINS = proxmark3 flasher fpga_compress
|
BINS = proxmark3 flasher fpga_compress
|
||||||
WINBINS = $(patsubst %, %.exe, $(BINS))
|
CLEAN = $(BINS) $(COREOBJS) $(CMDOBJS) $(OBJCOBJS) $(ZLIBOBJS) $(QTGUIOBJS) $(MULTIARCHOBJS) $(OBJDIR)/*.o *.moc.cpp ui/ui_overlays.h lualibs/usb_cmd.lua lualibs/mf_default_keys.lua
|
||||||
CLEAN = $(BINS) $(WINBINS) $(COREOBJS) $(CMDOBJS) $(OBJCOBJS) $(ZLIBOBJS) $(QTGUIOBJS) $(MULTIARCHOBJS) $(OBJDIR)/*.o *.moc.cpp ui/ui_overlays.h lualibs/usb_cmd.lua lualibs/mf_default_keys.lua
|
|
||||||
|
|
||||||
# need to assign dependancies to build these first...
|
# need to assign dependancies to build these first...
|
||||||
all: lua_build jansson_build mbedtls_build cbor_build $(BINS)
|
all: lua_build jansson_build mbedtls_build cbor_build $(BINS)
|
||||||
|
|
|
@ -6,7 +6,6 @@ LDFLAGS +=
|
||||||
|
|
||||||
OBJS = crypto1.o crapto1.o parity.o util_posix.o bucketsort.o
|
OBJS = crypto1.o crapto1.o parity.o util_posix.o bucketsort.o
|
||||||
EXES = mfkey32 mfkey32v2 mfkey64
|
EXES = mfkey32 mfkey32v2 mfkey64
|
||||||
WINEXES = $(patsubst %, %.exe, $(EXES))
|
|
||||||
|
|
||||||
all: $(OBJS) $(EXES)
|
all: $(OBJS) $(EXES)
|
||||||
|
|
||||||
|
@ -17,4 +16,4 @@ all: $(OBJS) $(EXES)
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $<
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $<
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(OBJS) $(EXES) $(WINEXES)
|
rm -f $(OBJS) $(EXES)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue