Clean up some misnamed garbage in Makefiles

This commit is contained in:
Gregory Nutt 2015-03-21 14:38:23 -06:00
parent 8c2efb7485
commit cfc53740e3
5 changed files with 7 additions and 7 deletions

View File

@ -43,7 +43,7 @@ AOBJS = $(ASRCS:.S=$(OBJEXT))
CSRCS = stm32_boot.c stm32_spi.c stm32_usbdev.c stm32_mmcsd.c
ifeq ($(CONFIG_STM32_FSMC),y)
CSRCS += up_lcd.c stm32_selectlcd.c
CSRCS += stm32_lcd.c stm32_selectlcd.c
endif
ifeq ($(CONFIG_HAVE_CXX),y)

View File

@ -59,7 +59,7 @@ CSRCS += lpc43_buttons.c
endif
ifeq ($(CONFIG_USBMSC),y)
CSRCS += up_usbmsc.c
CSRCS += lpc43_usbmsc.c
endif
ifeq ($(CONFIG_SPIFI_LIBRARY),y)

View File

@ -39,7 +39,7 @@ ASRCS =
CSRCS = at90usb_boot.c
ifeq ($(CONFIG_ARCH_LEDS),y)
CSRCS += up_leds.c
CSRCS += at90usb_leds.c
endif
AOBJS = $(ASRCS:.S=$(OBJEXT))

View File

@ -39,7 +39,7 @@ CFLAGS += -I$(TOPDIR)/sched
ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT))
CSRCS = up_boot.c up_leds.c up_network.c
CSRCS = mx1_boot.c mx1_leds.c mx1_network.c
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)

View File

@ -61,15 +61,15 @@ CSRCS += stm32_lcd.c
endif
ifeq ($(CONFIG_PWM),y)
CSRCS += up_pwm.c
CSRCS += stm32_pwm.c
endif
ifeq ($(CONFIG_QENCODER),y)
CSRCS += up_qencoder.c
CSRCS += stm32_qencoder.c
endif
ifeq ($(CONFIG_WATCHDOG),y)
CSRCS += up_watchdog.c
CSRCS += stm32_watchdog.c
endif
ifeq ($(CONFIG_NSH_ARCHINIT),y)