Skip to content
Permalink
e92cac757b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
13 lines (8 sloc) 234 Bytes
CC = gcc
FLAGS = -fno-stack-protector -no-pie -g
32FLAG = -m32
classicRop: classicROP.c
$(CC) $(FLAGS) classicROP.c -o classicRop
classicRop32: classicROP.c
$(CC) $(FLAGS) $(32FLAT) classicROP.c -o classicRop32
all: classicRop