replaced DEFAULT_TARGET with Makefile.target for specifying default target
This commit is contained in:
parent
1cc33ac451
commit
f0a3477dd2
12 changed files with 6 additions and 8 deletions
|
@ -1,7 +1,5 @@
|
||||||
all: empty
|
all: empty
|
||||||
|
|
||||||
DEFAULT_TARGET=minimal-net
|
|
||||||
|
|
||||||
UIP_CONF_IPV6=1
|
UIP_CONF_IPV6=1
|
||||||
|
|
||||||
CONTIKI = ../..
|
CONTIKI = ../..
|
||||||
|
|
1
examples/new-ipv6/Makefile.target
Normal file
1
examples/new-ipv6/Makefile.target
Normal file
|
@ -0,0 +1 @@
|
||||||
|
TARGET = minimal-net
|
|
@ -1,6 +1,5 @@
|
||||||
all: example-ping6
|
all: example-ping6
|
||||||
APPS=ping6
|
APPS=ping6
|
||||||
DEFAULT_TARGET=minimal-net
|
|
||||||
|
|
||||||
UIP_CONF_IPV6=1
|
UIP_CONF_IPV6=1
|
||||||
|
|
||||||
|
|
1
examples/ping-ipv6/Makefile.target
Normal file
1
examples/ping-ipv6/Makefile.target
Normal file
|
@ -0,0 +1 @@
|
||||||
|
TARGET = minimal-net
|
|
@ -1,8 +1,6 @@
|
||||||
all: udp-server udp-client
|
all: udp-server udp-client
|
||||||
DEFAULT_TARGET=minimal-net
|
|
||||||
|
|
||||||
UIP_CONF_IPV6=1
|
UIP_CONF_IPV6=1
|
||||||
DEFINES=WITH_UIP6
|
|
||||||
|
|
||||||
CONTIKI = ../..
|
CONTIKI = ../..
|
||||||
include $(CONTIKI)/Makefile.include
|
include $(CONTIKI)/Makefile.include
|
||||||
|
|
1
examples/udp-ipv6/Makefile.target
Normal file
1
examples/udp-ipv6/Makefile.target
Normal file
|
@ -0,0 +1 @@
|
||||||
|
TARGET = minimal-net
|
|
@ -1,5 +1,4 @@
|
||||||
all: example-udp-receiver
|
all: example-udp-receiver
|
||||||
DEFAULT_TARGET=minimal-net
|
|
||||||
|
|
||||||
UIP_CONF_IPV6=1
|
UIP_CONF_IPV6=1
|
||||||
|
|
||||||
|
|
1
examples/udp-receiver-ipv6/Makefile.target
Normal file
1
examples/udp-receiver-ipv6/Makefile.target
Normal file
|
@ -0,0 +1 @@
|
||||||
|
TARGET = minimal-net
|
|
@ -1,5 +1,4 @@
|
||||||
all: example-udp-sender
|
all: example-udp-sender
|
||||||
DEFAULT_TARGET=minimal-net
|
|
||||||
|
|
||||||
UIP_CONF_IPV6=1
|
UIP_CONF_IPV6=1
|
||||||
|
|
||||||
|
|
1
examples/udp-sender-ipv6/Makefile.target
Normal file
1
examples/udp-sender-ipv6/Makefile.target
Normal file
|
@ -0,0 +1 @@
|
||||||
|
TARGET = minimal-net
|
|
@ -1,6 +1,5 @@
|
||||||
all: webserver6
|
all: webserver6
|
||||||
APPS=webserver
|
APPS=webserver
|
||||||
DEFAULT_TARGET=minimal-net
|
|
||||||
|
|
||||||
UIP_CONF_IPV6=1
|
UIP_CONF_IPV6=1
|
||||||
|
|
||||||
|
|
1
examples/webserver-ipv6/Makefile.target
Normal file
1
examples/webserver-ipv6/Makefile.target
Normal file
|
@ -0,0 +1 @@
|
||||||
|
TARGET = minimal-net
|
Loading…
Reference in a new issue