Skip to content
This repository has been archived by the owner on Sep 4, 2019. It is now read-only.

Commit

Permalink
Add recursive makefiles to build the application in debug mode for ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
hungc committed Sep 28, 2012
1 parent d225b80 commit f47391e
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
LIST=CPU
ifndef QRECURSE
QRECURSE=recurse.mk
ifdef QCONFIG
QRDIR=$(dir $(QCONFIG))
endif
endif
include $(QRDIR)$(QRECURSE)
8 changes: 8 additions & 0 deletions arm/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
LIST=VARIANT
ifndef QRECURSE
QRECURSE=recurse.mk
ifdef QCONFIG
QRDIR=$(dir $(QCONFIG))
endif
endif
include $(QRDIR)$(QRECURSE)
1 change: 1 addition & 0 deletions arm/o-le-v7-g/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include ../../common.mk
28 changes: 28 additions & 0 deletions common.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
ifndef QCONFIG
QCONFIG=qconfig.mk
endif
include $(QCONFIG)

#####################################
# Preset make macros go here
#####################################

EXTRA_SRCVPATH+=$(PROJECT_ROOT)/

EXTRA_INCVPATH+=$(PRODUCT_ROOT)/

# Use same flags from Jamfile to make a shared library
CCFLAGS +=

define PINFO
PINFO DESCRIPTION=JSON_Parser
endef
INSTALLDIR=usr/bin

NAME=json_parser

include $(MKFILES_ROOT)/qtargets.mk

#####################################
# Post-set make macros go here
#####################################
Empty file added json_parser.use
Empty file.

0 comments on commit f47391e

Please sign in to comment.