tracexec 1.0.0

Tracer for execve{,at} and pre-exec behavior, launcher for debuggers.
1
2
3
4
5
6
7
8
9
10
11
CFLAGS ?= -Wall -Wextra

.PHONY: all clean

all: hello

hello: main.c include/greeting.h
	@$(CC) $(CFLAGS) main.c -o $@

clean:
	$(RM) hello