Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2008-06-26 20:45:54 +0000
committereutarass2008-06-26 20:45:54 +0000
commit355832aa62b0222f4c6fd60bf0f63202d6f17ddd (patch)
tree167b46544e8440305150c595a149fad589a90ab0 /examples
parent8c7ae88f08e5a13ab93f8e0f532daa4d63f6d0ab (diff)
downloadorg.eclipse.tcf-355832aa62b0222f4c6fd60bf0f63202d6f17ddd.tar.gz
org.eclipse.tcf-355832aa62b0222f4c6fd60bf0f63202d6f17ddd.tar.xz
org.eclipse.tcf-355832aa62b0222f4c6fd60bf0f63202d6f17ddd.zip
Added -Wmissing-prototypes in daytime example makefile
Diffstat (limited to 'examples')
-rw-r--r--examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile b/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile
index 6b4ebb91b..1ead543d4 100644
--- a/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile
+++ b/examples/org.eclipse.tm.tcf.examples.daytime.agent/Makefile
@@ -1,5 +1,5 @@
CC=gcc
-CFLAGS=-O -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE -I. -I../../agent -I-
+CFLAGS=-O -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE -Wmissing-prototypes -I. -I../../agent -I-
CFILES=$(basename $(wildcard *.c)) $(basename $(notdir $(wildcard ../../agent/*.c)))
OFILES=$(filter-out main%.o, $(addsuffix .o, $(CFILES)))

Back to the top