This website works better with JavaScript.
Home
Help
Register
Sign In
robotux
/
pstack
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Activity
Browse Source
Makefile cleaning
Use $^ instead of explicitely listing .c files in recipe.
master
Thomas Preud'homme
8 years ago
parent
fe2590b471
commit
d75a8ea2a1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Makefile
+ 1
- 1
Makefile
View File
@ -28,7 +28,7 @@ MANDIR := $(DESTDIR)$(MANDIR)
pstack
:
pstack
.
c
$(
CC
)
$(
CPPFLAGS
)
$(
CFLAGS
)
-o pstack
pstack.c
$(
LDFLAGS
)
$(
CC
)
$(
CPPFLAGS
)
$(
CFLAGS
)
-o pstack
$^
$(
LDFLAGS
)
clean
:
rm -f pstack
Write
Preview
Loading…
Cancel
Save