fastrand/makefile

9 lines
168 B
Makefile
Raw Normal View History

2025-04-01 19:21:39 +02:00
debug:
gcc main.c -g -o main
release:
gcc main.c -O2 -o main
perf:
g++ perf.cpp -O2 -o perftest; ./perftest
perf-debug:
g++ perf.cpp -g -o perftest; gdb ./perftest