diff --git a/graphics/screenshot/Makefile b/graphics/screenshot/Makefile index 0d1e2128d..34641002e 100644 --- a/graphics/screenshot/Makefile +++ b/graphics/screenshot/Makefile @@ -44,7 +44,8 @@ endif # TIFF Screenshot utility ASRCS = -CSRCS = screenshot_main.c +CSRCS = +MAINSRC = screenshot_main.c AOBJS = $(ASRCS:.S=$(OBJEXT)) COBJS = $(CSRCS:.c=$(OBJEXT)) diff --git a/graphics/tiff/Makefile b/graphics/tiff/Makefile index 3f04b4f30..bc109bd5d 100644 --- a/graphics/tiff/Makefile +++ b/graphics/tiff/Makefile @@ -39,22 +39,22 @@ include $(APPDIR)/Make.defs # NuttX TIFF Creation Tool -ASRCS = -CSRCS = tiff_addstrip.c tiff_finalize.c tiff_initialize.c tiff_utils.c +ASRCS = +CSRCS = tiff_addstrip.c tiff_finalize.c tiff_initialize.c tiff_utils.c -AOBJS = $(ASRCS:.S=$(OBJEXT)) -COBJS = $(CSRCS:.c=$(OBJEXT)) +AOBJS = $(ASRCS:.S=$(OBJEXT)) +COBJS = $(CSRCS:.c=$(OBJEXT)) -SRCS = $(ASRCS) $(CSRCS) -OBJS = $(AOBJS) $(COBJS) +SRCS = $(ASRCS) $(CSRCS) +OBJS = $(AOBJS) $(COBJS) ifeq ($(CONFIG_WINDOWS_NATIVE),y) - BIN = ..\..\libapps$(LIBEXT) + BIN = ..\..\libapps$(LIBEXT) else ifeq ($(WINTOOL),y) - BIN = ..\\..\\libapps$(LIBEXT) + BIN = ..\\..\\libapps$(LIBEXT) else - BIN = ../../libapps$(LIBEXT) + BIN = ../../libapps$(LIBEXT) endif endif @@ -62,7 +62,7 @@ ROOTDEPPATH = --dep-path . # Common build -VPATH = +VPATH = all: .built .PHONY: context clean depend distclean