lots of stuff
[assignments.git] / lab / lab6 / Makefile
1 .PHONY: all
2
3 cc=/usr/bin/gcc
4 CARGS=-Wall -Werror -Wextra -pedantic -Wno-unused-parameter -Wno-unused -std=c99
5 SRC=zombie.c -o zombie
6
7 all:
8 $(CC) $(CARGS) $(SRC)
9
10 debug:
11 $(CC) $(CARGS) $(SRC) -g -O0
12