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