Skip to content

Commit

Permalink
sliptty: introduce a new SLIP to TUN tool
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed Mar 5, 2020
1 parent 695e91a commit 917ba19
Show file tree
Hide file tree
Showing 4 changed files with 730 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/tools/sliptty/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sliptty
13 changes: 13 additions & 0 deletions dist/tools/sliptty/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
BIN = sliptty
CFLAGS += -O3 -Wall -pedantic

all: $(BIN)

debug: CFLAGS += -g3
debug: all

$(BIN): $(wildcard *.c)
$(CC) $(CFLAGS) $^ -o $@

clean:
$(RM) $(BIN)
Loading

0 comments on commit 917ba19

Please sign in to comment.