d4d686a1ed549f769320183cd9e3478c172ce2ba
[assignments.git] / assgn6 / Makefile
1 .PHONY: all
2
3 CC=/usr/bin/gcc
4 CARGS=-Wall -Werror -Wextra -pedantic -Wno-unused-parameter -Wno-unused -std=gnu99 -lbsd
5 SRC=filewatch.c -o filewatch
6
7 all:
8 $(CC) $(CARGS) $(SRC)
9
10 debug:
11 $(CC) $(CARGS) $(SRC) -g -O0
12