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