mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-02-25 11:17:27 -08:00
* Fix compile errors with MacOS - _POSIX_C_SOURCE must not be defined for num_CPU() * separate util_posix.c require changes in tools directory as well * remove unnecessary self-include
21 lines
446 B
Makefile
Executable File
21 lines
446 B
Makefile
Executable File
VPATH = ../../common ../../common/crapto1 ../../client
|
|
CC = gcc
|
|
LD = gcc
|
|
CFLAGS = -std=c99 -D_ISOC99_SOURCE -I../../common -I../../client -Wall -O3
|
|
LDFLAGS =
|
|
|
|
OBJS = crypto1.o crapto1.o parity.o util_posix.o mfkey.o
|
|
EXES = mfkey32 mfkey64
|
|
WINEXES = $(patsubst %, %.exe, $(EXES))
|
|
|
|
all: $(OBJS) $(EXES)
|
|
|
|
%.o : %.c
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
% : %.c $(OBJS)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $<
|
|
|
|
clean:
|
|
rm -f $(OBJS) $(EXES) $(WINEXES)
|