projects
/
assignments.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
write homework 5
[assignments.git]
/
assgn5
/
Makefile
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
PHONY: all
2
3
CC=/usr/bin/gcc
4
5
all:
6
$(CC) -Wall -Werror -Wextra -pedantic copy.c -o copy -Wno-unused-parameter -Wno-unused
7
8
debug:
9
$(CC) -g -O0 -Wall -Werror -Wextra -pedantic copy.c -o copy -Wno-unused-parameter -Wno-unused