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
Browse Source
Add chapter 04 Makefile
master
T. Meissner
9 years ago
parent
b389a7e623
commit
680b0d5976
1 changed files
with
10 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-0
c_primer_plus/chapter04/Makefile
+ 10
- 0
c_primer_plus/chapter04/Makefile
View File
@ -0,0 +1,10 @@
SRC
:=
$(
shell ls *.c
)
%
:
%.
c
gcc -Wall -Wextra
$@
.c -o
$@
.PHONY
:
clean
clean
:
@rm -f ??
Write
Preview
Loading…
Cancel
Save