This website works better with JavaScript.
Home
Help
Sign In
tmeissner
/
learning-by-doing
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Learning by doing: Reading books and trying to understand the (code) examples
169
Commits
1
Branch
143 KiB
Tree:
b5defb8e32
learning-by-doing
/
c_primer_plus
/
chapter03
/
Makefile
9 lines
104 B
Raw
Normal View
History
Add Makefile & last two exercises of chapter 03
10 years ago
Add c11 std to gcc options
9 years ago
Add Makefile & last two exercises of chapter 03
10 years ago
SRC
:=
$(
shell ls *.c
)
%
:
%.
c
gcc -std
=
c11 -Wall -Wextra
$@
.c -o
$@
.PHONY
:
clean
clean
:
@rm -f ??