From 355630f2d68bfde59cbedb4101714dd6e3ecf132 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Sun, 31 Dec 2006 13:46:40 +0000 Subject: [PATCH] The whole Contiki 2.x CVS project doesn't contain a single usage of the Contiki preemptive multithreading library. Therefore I argue to remove it from the default build in order to lower the barrier to entry for new - or old ;-) targets - especially those without a timer interrupt. If the Contiki preemptive multithreading library is desirable for a specific target it can be added with a simple CONTIKIFILES += $(THREADS) in the Makefile.$(TARGET). --- Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.include b/Makefile.include index 521016f00..267e66b50 100644 --- a/Makefile.include +++ b/Makefile.include @@ -44,7 +44,7 @@ CTKVNC = $(CTK) ctk-vncserver.c libconio.c vnc-server.c vnc-out.c \ CTKTERM = $(CTK) libconio.c ctk-term.c ctk-term-in.c ctk-term-out.c \ ctk-termtelnet.c -CONTIKIFILES = $(SYSTEM) $(THREADS) $(CFS) $(LIBS) $(NET) $(DHCP) +CONTIKIFILES = $(SYSTEM) $(CFS) $(LIBS) $(NET) $(DHCP) CONTIKI_SOURCEFILES += $(CONTIKIFILES)