Add linux_intro presentation
This commit is contained in:
16
assets/bof/logic/Makefile
Normal file
16
assets/bof/logic/Makefile
Normal 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
|
Reference in New Issue
Block a user