makefile changes for "make perf" command

This commit is contained in:
Richard Thier 2025-04-01 20:01:52 +02:00
parent 0a5204c1cc
commit ef915efdc1

View File

@ -2,3 +2,5 @@ debug:
gcc main.c -g -o main
release:
gcc main.c -O2 -o main
perf:
g++ perf.cpp -O2 -o perftest; ./perftest