diff options
| author | Paul Buetow <paul@buetow.org> | 2024-02-11 22:48:39 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-02-11 22:48:39 +0200 |
| commit | 0297fb7b2176418638aa18aecf55edb9b549dfcb (patch) | |
| tree | ce77b86726bb230beff811def949881edc5182c0 | |
| parent | 5ed09a6a0254a65bb57618463eb3754402615160 (diff) | |
move around some stuff to the Makefile
| -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 |
