1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/dist/tools/sliptty/Makefile
2020-03-05 15:55:10 +01:00

14 lines
169 B
Makefile

BIN = sliptty
CFLAGS += -O3 -Wall -pedantic
all: $(BIN)
debug: CFLAGS += -g3
debug: all
$(BIN): $(wildcard *.c)
$(CC) $(CFLAGS) $^ -o $@
clean:
$(RM) $(BIN)