From e84d6fc6651aa7d1e5fc23fb4850aa0dcd613172 Mon Sep 17 00:00:00 2001
From: Nicolas Tsiftes <nvt@sics.se>
Date: Mon, 4 Jun 2012 20:02:23 +0200
Subject: [PATCH] Added default targets and removed certain C flags.

---
 examples/antelope/netdb/Makefile | 2 ++
 examples/antelope/shell/Makefile | 4 +++-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/examples/antelope/netdb/Makefile b/examples/antelope/netdb/Makefile
index ca75d78e6..8d49a4ccb 100644
--- a/examples/antelope/netdb/Makefile
+++ b/examples/antelope/netdb/Makefile
@@ -3,4 +3,6 @@ APPS += antelope
 CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
 SMALL = 1
 
+all: netdb-client netdb-server
+
 include $(CONTIKI)/Makefile.include
diff --git a/examples/antelope/shell/Makefile b/examples/antelope/shell/Makefile
index 265de76c0..95a2d9ccc 100644
--- a/examples/antelope/shell/Makefile
+++ b/examples/antelope/shell/Makefile
@@ -2,7 +2,9 @@ CONTIKI = ../../../
 
 APPS += antelope unit-test
 
-CFLAGS += -Wall -g -DPROJECT_CONF_H=\"project-conf.h\"
+CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
 SMALL = 1
 
+all: shell-db
+
 include $(CONTIKI)/Makefile.include