From 84467303e71dd39252529f3a1595f815e0264361 Mon Sep 17 00:00:00 2001 From: Stefan `Sec` Zehl Date: Mon, 19 Dec 2011 21:20:58 +0100 Subject: [PATCH] Correctly default to APP=final now --- firmware/applications/Makefile | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/firmware/applications/Makefile b/firmware/applications/Makefile index 37b54ec..a8d3138 100644 --- a/firmware/applications/Makefile +++ b/firmware/applications/Makefile @@ -4,6 +4,10 @@ OBJS = +ifndef APP +APP=final +endif + ifeq "$(APP)" "initial" NODEFAULT = y endif @@ -20,20 +24,6 @@ OBJS += $(foreach mod,$(APP),$(mod).o) SRCS = $(foreach mod,$(APP),$(mod).c) -ifndef APP -ME_OBJ=$(USERNAME) - -ifeq "$(ME_OBJ)" "" -ME_OBJ=$(USER) -endif - -ifeq "$(ME_OBJ)" "" -ME_OBJ=nouser -endif - -OBJS += $(ME_OBJ).o -endif - WRAP=wrapper LIBNAME=app