Add examples for presentation

This commit is contained in:
Valentin Brandl
2019-12-18 18:37:52 +01:00
parent abd0defb17
commit e17724b504
5 changed files with 22 additions and 0 deletions

10
presentation/Makefile Normal file
View File

@ -0,0 +1,10 @@
SRC=example.c
CC=gcc
build: nopie pie
nopie:
$(CC) -no-pie -o example.nopie example.c
pie:
$(CC) -pie -o example.pie example.c