1
0

added more code

This commit is contained in:
Andrew W
2022-08-28 16:12:16 -05:00
parent 5a2894ed1b
commit 7dabaef6f6
2345 changed files with 1343530 additions and 0 deletions

22
CPE455/alpha/Makefile Normal file
View File

@ -0,0 +1,22 @@
#
# alpha makefile
#
# type 'make fixme' to build the vulnerable version of the program without GDB support
# type 'make vulnerable' to build the vulnerable version of the program
# type 'make fortified' to build the fortified version of the program
#
CC = gcc
CFLAGS = -g
fixme: fixme.c
$(CC) fixme.c -o fixme
vulnerable: fixme.c
$(CC) $(CFLAGS) fixme.c -o vulnerable
fortified: fixme.c
$(CC) $(CFLAGS) -D_FORTIFY_SOURCE=1 -O1 fixme.c -o fortified
clean:
rm vulnerable fortified fixme