mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
14 lines
169 B
Makefile
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)
|