Skip to content
Snippets Groups Projects
Commit 0fd3b59b authored by Mark's avatar Mark
Browse files

Exclude Ardulink on Windows in the makefile

parent 4b99ff89
No related branches found
No related tags found
No related merge requests found
TOOLS:=minichlink minichlink.so
CFLAGS:=-O0 -g3 -Wall
C_S:=minichlink.c pgm-wch-linke.c pgm-esp32s2-ch32xx.c nhc-link042.c ardulink.c minichgdb.c
C_S:=minichlink.c pgm-wch-linke.c pgm-esp32s2-ch32xx.c nhc-link042.c minichgdb.c
# General Note: To use with GDB, gdb-multiarch
# gdb-multilib {file}
......@@ -23,6 +23,9 @@ else
LIBINCLUDES:=$(shell pkg-config --libs-only-L libusb-1.0)
INCS:=$(INCLUDES) $(LIBINCLUDES)
endif
# Until it's supported on Windows, add the Ardulink file here.
C_S:=$(C_S) ardulink.c
endif
all : $(TOOLS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment