Rename mifare_application_directory.[ch] to mad.[ch].
This commit is contained in:
parent
9478706550
commit
89dd817a63
5 changed files with 5 additions and 5 deletions
|
@ -6,8 +6,8 @@ AM_LDFLAGS = @LIBNFC_LIBS@
|
||||||
|
|
||||||
lib_LTLIBRARIES = libfreefare.la
|
lib_LTLIBRARIES = libfreefare.la
|
||||||
|
|
||||||
libfreefare_la_SOURCES = mifare_classic.c mifare_application_directory.c
|
libfreefare_la_SOURCES = mifare_classic.c mad.c
|
||||||
libfreefare_la_HEADERS = mifare_classic.h mifare_application_directory.h
|
libfreefare_la_HEADERS = mifare_classic.h mad.h
|
||||||
libfreefare_ladir = $(includedir)
|
libfreefare_ladir = $(includedir)
|
||||||
|
|
||||||
pkgconfigdir = $(libdir)/pkgconfig
|
pkgconfigdir = $(libdir)/pkgconfig
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "mifare_application_directory.h"
|
#include "mad.h"
|
||||||
|
|
||||||
struct aid {
|
struct aid {
|
||||||
uint8_t function_cluster_code;
|
uint8_t function_cluster_code;
|
|
@ -2,7 +2,7 @@ LMF_SRCDIR= ${.CURDIR}/..
|
||||||
.PATH: ${LMF_SRCDIR}
|
.PATH: ${LMF_SRCDIR}
|
||||||
|
|
||||||
#LMF_SRCS!= ${MAKE} -f ${LMF_SRCDIR}/Makefile -V SRCS
|
#LMF_SRCS!= ${MAKE} -f ${LMF_SRCDIR}/Makefile -V SRCS
|
||||||
LMF_SRCS= ../mifare_classic.c ../mifare_application_directory.c
|
LMF_SRCS= ../mifare_classic.c ../mad.c
|
||||||
|
|
||||||
TESTS= test_read_sector_0.c \
|
TESTS= test_read_sector_0.c \
|
||||||
test_authenticate.c \
|
test_authenticate.c \
|
||||||
|
|
|
@ -205,7 +205,7 @@ int read_open_memory2(struct archive *, void *, size_t, size_t);
|
||||||
|
|
||||||
#include <nfc/nfc.h>
|
#include <nfc/nfc.h>
|
||||||
#include <mifare_classic.h>
|
#include <mifare_classic.h>
|
||||||
#include <mifare_application_directory.h>
|
#include <mad.h>
|
||||||
|
|
||||||
int mifare_classic_test_setup (MifareClassicTag *tag);
|
int mifare_classic_test_setup (MifareClassicTag *tag);
|
||||||
int mifare_classic_test_teardown (MifareClassicTag tag);
|
int mifare_classic_test_teardown (MifareClassicTag tag);
|
||||||
|
|
Loading…
Reference in a new issue