Fix that way that NxWight UnitTests are reigistered as NSH builtin apps
This commit is contained in:
parent
90d063e9dc
commit
d69d3cd080
@ -366,3 +366,6 @@
|
||||
NxWidgets::CGlyphSliderHorizontal class. From Ken Pettit (2013-5-17) .
|
||||
* NxWidgets::CGlyphSliderHorizontal: Fix a drawing error. From Ken
|
||||
Pettit (2013-5-17).
|
||||
* UnitTests/*/Makefile and .gitignore: Update the way that NSH
|
||||
the Unit Tests are registered as built-in NSH applications (2013-5-30).
|
||||
|
||||
|
1
UnitTests/CButton/.gitignore
vendored
1
UnitTests/CButton/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/Unitests/CButton/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CButtonArray/.gitignore
vendored
1
UnitTests/CButtonArray/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CButtonArray/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CCheckBox/.gitignore
vendored
1
UnitTests/CCheckBox/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CCheckBox/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CGlyphButton/.gitignore
vendored
1
UnitTests/CGlyphButton/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CGlyphButton/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CGlyphSliderHorizontal/.gitignore
vendored
1
UnitTests/CGlyphSliderHorizontal/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CGlyphSliderHorizontal/Makefile
|
||||
#
|
||||
# Copyright (C) 2012-213 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CImage/.gitignore
vendored
1
UnitTests/CImage/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CImage/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CKeypad/.gitignore
vendored
1
UnitTests/CKeypad/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CKeyPad/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CLabel/.gitignore
vendored
1
UnitTests/CLabel/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CLabel/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CLatchButton/.gitignore
vendored
1
UnitTests/CLatchButton/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CLatchButton/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CLatchButtonArray/.gitignore
vendored
1
UnitTests/CLatchButtonArray/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CLatchButtonArray/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CListBox/.gitignore
vendored
1
UnitTests/CListBox/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CListBox/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CProgressBar/.gitignore
vendored
1
UnitTests/CProgressBar/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CProgressBar/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CRadioButton/.gitignore
vendored
1
UnitTests/CRadioButton/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CRadioButton/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CScrollbarHorizontal/.gitignore
vendored
1
UnitTests/CScrollbarHorizontal/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CScrollbarHorizontal/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
@$(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CScrollbarVertical/.gitignore
vendored
1
UnitTests/CScrollbarVertical/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CScrollbarVertical/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CSliderHorizonal/.gitignore
vendored
1
UnitTests/CSliderHorizonal/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CSliderHorizontal/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CSliderVertical/.gitignore
vendored
1
UnitTests/CSliderVertical/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CSliderVertical/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/CTextBox/.gitignore
vendored
1
UnitTests/CTextBox/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/UnitTests/CTextBox/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -142,15 +142,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -159,6 +162,7 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
|
1
UnitTests/nxwm/.gitignore
vendored
1
UnitTests/nxwm/.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
/Make.dep
|
||||
/.context
|
||||
/.depend
|
||||
/.built
|
||||
/*.asm
|
||||
|
@ -1,7 +1,7 @@
|
||||
#################################################################################
|
||||
# NxWidgets/Unitests/nxwm/Makefile
|
||||
#
|
||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -172,15 +172,18 @@ else
|
||||
endif
|
||||
$(Q) touch .built
|
||||
|
||||
# Standard housekeeping targets
|
||||
# Register NSH built-in application
|
||||
|
||||
.context:
|
||||
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
||||
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
||||
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
||||
endif
|
||||
$(Q) touch $@
|
||||
|
||||
context: .context
|
||||
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
||||
else
|
||||
context:
|
||||
endif
|
||||
|
||||
# Standard housekeeping targets
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) $(CXX) -- $(CXXFLAGS) -- $(SRCS) >Make.dep
|
||||
@ -189,10 +192,12 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE, $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user