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