Add linux_intro presentation

This commit is contained in:
Valentin Brandl
2022-10-05 17:58:22 +02:00
parent 8dfc841a59
commit 1e0227831b
33 changed files with 297 additions and 8 deletions

16
assets/bof/logic/Makefile Normal file
View File

@ -0,0 +1,16 @@
# use bash so process substutution is available
CC = gcc
CFLAGS = -fno-stack-protector -g
SHELL = bash
SRC = logic.c
TARGET = $(SRC:%.c=%)
.PHONY: build
build: $(TARGET)
%: %.c
$(CC) ${CFLAGS} $< -o $@
.PHONY: clean
clean:
rm -f logic