mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
11 lines
217 B
Makefile
11 lines
217 B
Makefile
MODULE = ubasic
|
|
|
|
# some toolchains complain about the usage of isdigit with a pointer in the
|
|
# tokenizer
|
|
CFLAGS += -Wno-char-subscripts
|
|
|
|
SRC := tokenizer.c ubasic.c
|
|
NO_AUTO_SRC := 1
|
|
|
|
include $(RIOTBASE)/Makefile.base
|