Configs and makefile fixes

This commit is contained in:
2023-11-28 10:48:55 -04:00
parent 9f1f82ad43
commit 152e31b38d
5 changed files with 35 additions and 3 deletions

View File

@ -1,9 +1,9 @@
.PHONY: clean build test all
clean:
mkdir -p student_out
rm student_out/*
rm a.out
mkdir -p ./student_out
rm -f ./student_out/*
rm -f ./a.out
build:
gcc -g -O0 ./code/*.c -lm