mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-15 13:52:45 +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)
|