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
171
Commits
1
Branch
143 KiB
HTML
47.5%
C
27.6%
Python
20.7%
Makefile
3.9%
Objective-C
0.2%
Tree:
46bd1bc3a6
learning-by-doing
/
c_primer_plus
/
chapter03
/
Makefile
10 lines
104 B
Raw
Blame
History
SRC
:=
$(
shell ls *.c
)
%
:
%.
c
gcc -std
=
c11 -Wall -Wextra
$@
.c -o
$@
.PHONY
:
clean
clean
:
@rm -f ??