mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-09-27 06:54:55 +08:00
11 lines
No EOL
206 B
Text
11 lines
No EOL
206 B
Text
CC=c:\mingw\bin\gcc
|
|
|
|
LIBS = -lgdi32 -lsetupapi
|
|
|
|
all: prox.exe
|
|
|
|
prox.exe: prox.c wingui.c command.c
|
|
$(CC) $(CFLAGS) $(DEFINES) -o prox.exe prox.c wingui.c command.c $(LIBS)
|
|
|
|
clean:
|
|
del prox.exe |