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