WIS-SEC-BOF/presentation_brandl_valentin/Makefile

11 lines
132 B
Makefile
Raw Permalink Normal View History

2019-12-18 18:37:52 +01:00
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