mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-09 01:36:52 +08:00
a99c6a1921
the only reason any of the Windows code was in CPP files was because the MS compiler doesn't support C99. Switch to using MinGW, and that problem goes away, so we can rename the files back.
11 lines
No EOL
208 B
Text
11 lines
No EOL
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 |