mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-09 17:56:53 +08:00
11 lines
208 B
Text
11 lines
208 B
Text
|
CC=c:\mingw\bin\gcc
|
||
|
|
||
|
LIBS = -lgdi32 -lsetupapi
|
||
|
|
||
|
all: proxmark3
|
||
|
|
||
|
proxmark3: prox.c wingui.c command.c
|
||
|
$(CC) $(CFLAGS) $(DEFINES) -o prox.exe prox.c wingui.c command.c $(LIBS)
|
||
|
|
||
|
clean:
|
||
|
del prox.exe
|