diff options
| -rw-r--r-- | Makefile | 10 | ||||
| -rwxr-xr-x | clean.sh | 9 | ||||
| -rwxr-xr-x | run.sh | 5 |
3 files changed, 8 insertions, 16 deletions
@@ -1,3 +1,9 @@ -all: +all: build run +build: ./build.sh - ./run.sh +clean: + find . -type f -name ioriotng -delete + find . -name \*.o -delete + find . -name vmlinux.h -delete +run: + sudo ./ioriotng diff --git a/clean.sh b/clean.sh deleted file mode 100755 index f7863db..0000000 --- a/clean.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -set -xeuf -o pipefail - -find . -name ioriotng -exec rm -v {} \; -find . -name \*.o -exec rm -v {} \; -if [ -f internal/vmlinux.h ]; then - rm -v internal/vmlinux.h -fi @@ -1,5 +0,0 @@ -#!/bin/bash - -set -xeuf -o pipefail - -sudo ./ioriotng |
