mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 12:59:44 -07:00
Merge pull request #250 from pwpiwi/fix_mfkey
fix mfkey tools (issue #247)
This commit is contained in:
commit
7cd25ae5a3
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
VPATH = ../../common ../../common/crapto1 ../../client
|
VPATH = ../../common ../../common/crapto1 ../../client
|
||||||
CC = gcc
|
CC = gcc
|
||||||
LD = gcc
|
LD = gcc
|
||||||
CFLAGS = -I../../common -I../../client -Wall -O4
|
CFLAGS = -std=c99 -D_ISOC99_SOURCE -I../../common -I../../client -Wall -O3
|
||||||
LDFLAGS =
|
LDFLAGS =
|
||||||
|
|
||||||
OBJS = crypto1.o crapto1.o parity.o util.o mfkey.o
|
OBJS = crypto1.o crapto1.o parity.o util.o mfkey.o
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <strings.h>
|
#include <string.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include "crapto1/crapto1.h"
|
#include "crapto1/crapto1.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue