Commit beaa536f14d5a13cb7b4459c30224c3804f24bb2

Authored by achemin1
1 parent 0cd64dcd

revert sur le Makefile pour aller sur Linux

Showing 1 changed file with 5 additions and 5 deletions   Show diff stats
Makefile
... ... @@ -3,19 +3,19 @@ OBJ = obj
3 3 SRC = src
4 4 INCLUDE = include
5 5 CFLAGS =
6   -CLIBS = -lusb-1.0 -I"C:\Program Files\zLib\libusb-1.0.23\include" -B"C:\Program Files\zLib\libusb-1.0.23\MinGW32\static"
  6 +CLIBS = -lusb-1.0 -I"C:\Program Files\zLib\libusb-1.0.23\include"
  7 +#sur le Windows d'Axel :
  8 +#CLIBS := ${CLIBS} -B"C:\Program Files\zLib\libusb-1.0.23\MinGW32\static"
7 9 GNUMAKEFLAGS = --no-print-directory
8 10  
9 11 gcc = gcc
10   -gcc := "/mnt/c/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc.exe"
  12 +#sur le Windows d'Axel :
  13 +#gcc := "/mnt/c/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc.exe"
11 14  
12 15  
13   -VERBOSE_THRESHOLD?=3
14   -
15 16 DEBUG?=0
16 17 ifeq ($(DEBUG), 0)
17 18 CFLAGS = -W -Wall
18   - VERBOSE_THRESHOLD = 0
19 19 else
20 20 CFLAGS = -W -Wall -g -O0 -DDEBUG
21 21 endif
... ...