Don't build in sched_processtimer.c if CONFIG_SCHED_TICKLESS is selected.

This commit is contained in:
Gregory Nutt 2014-08-06 18:27:10 -06:00
parent 94afad9b70
commit 595ec296fb

View File

@ -1,7 +1,7 @@
############################################################################
# arch/sim/src/Makefile
#
# Copyright (C) 2007, 2008, 2011-2012 Gregory Nutt. All rights reserved.
# Copyright (C) 2007, 2008, 2011-2012, 2014 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@ -47,6 +47,10 @@ CSRCS = up_initialize.c up_idle.c up_interruptcontext.c \
up_devconsole.c
HOSTSRCS = up_stdio.c up_hostusleep.c
ifeq ($(CONFIG_SCHED_TICKLESS),y)
CSRCS += up_tickless.c
endif
ifeq ($(CONFIG_NX_LCDDRIVER),y)
CSRCS += up_lcd.c
else