summaryrefslogtreecommitdiff
path: root/apps/examples/discover/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/discover/Makefile')
-rw-r--r--apps/examples/discover/Makefile29
1 files changed, 15 insertions, 14 deletions
diff --git a/apps/examples/discover/Makefile b/apps/examples/discover/Makefile
index ae3c86263..6d419fd41 100644
--- a/apps/examples/discover/Makefile
+++ b/apps/examples/discover/Makefile
@@ -42,31 +42,32 @@ include $(APPDIR)/Make.defs
# Discover built-in application info
-APPNAME = discover
-PRIORITY = SCHED_PRIORITY_DEFAULT
-STACKSIZE = 2048
+APPNAME = discover
+PRIORITY = SCHED_PRIORITY_DEFAULT
+STACKSIZE = 2048
-ASRCS =
-CSRCS = discover_main.c
+ASRCS =
+CSRCS =
+MAINSRC = discover_main.c
-AOBJS = $(ASRCS:.S=$(OBJEXT))
-COBJS = $(CSRCS:.c=$(OBJEXT))
+AOBJS = $(ASRCS:.S=$(OBJEXT))
+COBJS = $(CSRCS:.c=$(OBJEXT))
MAINOBJ = $(MAINSRC:.c=$(OBJEXT))
-SRCS = $(ASRCS) $(CSRCS) $(MAINSRC)
-OBJS = $(AOBJS) $(COBJS)
+SRCS = $(ASRCS) $(CSRCS) $(MAINSRC)
+OBJS = $(AOBJS) $(COBJS)
ifneq ($(CONFIG_BUILD_KERNEL),y)
OBJS += $(MAINOBJ)
endif
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
@@ -79,11 +80,11 @@ endif
CONFIG_XYZ_PROGNAME ?= discover$(EXEEXT)
PROGNAME = $(CONFIG_XYZ_PROGNAME)
-ROOTDEPPATH = --dep-path .
+ROOTDEPPATH = --dep-path .
# Common build
-VPATH =
+VPATH =
all: .built
.PHONY: clean depend distclean