mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 02:34:48 +08:00
Don't depend on local path/lib settings for easier compilation
This commit is contained in:
parent
c9f99c010e
commit
e6b13a5718
2 changed files with 4 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
PATH=..\..\devkitARM\bin;%PATH%
|
||||
CC = arm-elf-gcc
|
||||
AS = arm-elf-as
|
||||
LD = arm-elf-ld
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
BASE_DEFS = /D_WIN32_WINNT=0x501 /DISOLATION_AWARE_ENABLED /D_WIN32_IE=0x600 /DWIN32_LEAN_AND_MEAN /DWIN32 /D_MT /D_CRT_SECURE_NO_WARNINGS
|
||||
BASE_CFLAGS = /W3 /nologo
|
||||
|
||||
LIB=..\..\devkitWIN\lib;%LIB%
|
||||
|
||||
DEFINES = $(BASE_DEFS)
|
||||
CFLAGS = $(BASE_CFLAGS) /Zi /MT
|
||||
CFLAGS = $(BASE_CFLAGS) /I..\..\devkitWIN/include /Zi /MT
|
||||
|
||||
OBJDIR = obj
|
||||
|
||||
|
|
Loading…
Reference in a new issue