1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-15 13:52:45 +01:00
RIOT/dist/tools/sliptty/Makefile

14 lines
169 B
Makefile
Raw Normal View History

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