Blame view

RIOT/dist/tools/tunslip/Makefile 263 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  PREFIX ?= /usr/local
  BIN    = tapslip6 tunslip tunslip6
  
  all: $(BIN)
  
  install:
  	mkdir -p $(PREFIX)/bin && install $(BIN) $(PREFIX)/bin
  
  uninstall:
  	rm -f $(foreach bin,$(BIN),$(PREFIX)/bin/$(bin))
  
  clean:
  	rm -f $(BIN)
  
  CFLAGS += -Wall -Wextra -pedantic -std=c99