From: solar Date: Mon, 21 Nov 2005 18:09:53 +0000 (+0000) Subject: Disabled command echo, added -Wall. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=791a0796a2cab9cb43147260d3fd86bdca2a8c25;p=fw%2Fpdclib Disabled command echo, added -Wall. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@72 546481bc-9713-0410-bf18-d3337bbf4a3e --- diff --git a/Makefile b/Makefile index 9500604..e2f8e6d 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ dist: @tar czf pdclib.tgz $(ALLFILES) %.o: %.c Makefile - $(CC) -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./internals -c $< -o $@ + @$(CC) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./internals -c $< -o $@ %.t: %.c Makefile - $(CC) -DTEST -std=c99 -I./internals/ $< -o $@ + @$(CC) -Wall -DTEST -std=c99 -I./internals/ $< -o $@