Skip to content

Commit

Permalink
Merge pull request #10477 from miri64/sliptty/feat/initial
Browse files Browse the repository at this point in the history
sliptty: introduce a new SLIP to TUN tool
  • Loading branch information
benpicco committed Mar 5, 2020
2 parents 2f2fcc8 + 917ba19 commit 0b1dce3
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 0b1dce3

Please sign in to comment.