22 lines
351 B
Makefile
22 lines
351 B
Makefile
all: build run
|
|
|
|
debug: buildd run clean
|
|
|
|
zip:
|
|
zip naloga.zip main.c Makefile
|
|
|
|
build: main.c
|
|
gcc -m32 -O3 main.c -o demo_streznik -pthread
|
|
|
|
buildd: main.c
|
|
gcc -g -m32 main.c -o demo_streznik -fsanitize=address -fno-omit-frame-pointer
|
|
|
|
run:
|
|
./demo_streznik 8003
|
|
|
|
clean:
|
|
rm -f demo_streznik
|
|
|
|
cleanAll:
|
|
rm -f img.jpg text.txt Video1.mp4 Video2.mp4
|