mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-28 03:14:53 +08:00
chg: the windows exe annoys the linux compiler
This commit is contained in:
parent
5fdf867253
commit
4211fdce31
1 changed files with 4 additions and 2 deletions
|
@ -5,7 +5,8 @@ LDFLAGS =
|
|||
|
||||
OBJS = crapto1.o crypto1.o
|
||||
HEADERS = crapto1.h
|
||||
EXES = mfkey64 mfkey64.exe mfkey32 mfkey32.exe mfkey32v2 mfkey32v2.exe
|
||||
EXES = mfkey64 mfkey32 mfkey32v2
|
||||
WINEXE = mfkey64.exe mfkey32.exe mfkey32v2.exe
|
||||
LIBS =
|
||||
|
||||
all: $(OBJS) $(EXES) $(LIBS)
|
||||
|
@ -14,4 +15,5 @@ all: $(OBJS) $(EXES) $(LIBS)
|
|||
$(LD) $(CFLAGS) -o $@ $< $(OBJS) $(LDFLAGS)
|
||||
|
||||
clean:
|
||||
rm -f $(OBJS) $(EXES) $(LIBS)
|
||||
rm -f $(OBJS) $(EXES) $(LIBS) $(WINEXE)
|
||||
|
||||
|
|
Loading…
Reference in a new issue