summaryrefslogtreecommitdiff
path: root/utils/regtools/Makefile
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2014-12-14 11:53:55 +0100
committerAmaury Pouly <amaury.pouly@gmail.com>2015-09-11 16:40:19 +0200
commit1cada1f8339d6b5f8506277f80e62aaef77ab774 (patch)
tree8477120e97832d659d2ffc471a8bfde73ad4c36e /utils/regtools/Makefile
parentc8d3638b9ebc24e4766714da1c9f961e350799c6 (diff)
downloadrockbox-1cada1f8339d6b5f8506277f80e62aaef77ab774.tar.gz
rockbox-1cada1f8339d6b5f8506277f80e62aaef77ab774.zip
soc_desc: new version of the desc file format
Fix qeditor to use the old soc_desc_v1. Port hwstub_shell to the new description format. Change-Id: I9fefbff534bfaa5c3603bb3dd8307a2b76e88cfc
Diffstat (limited to 'utils/regtools/Makefile')
-rw-r--r--utils/regtools/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/regtools/Makefile b/utils/regtools/Makefile
index 5e3feafd01..fed5d8c8e5 100644
--- a/utils/regtools/Makefile
+++ b/utils/regtools/Makefile
@@ -2,8 +2,9 @@ DEFINES=
2CC?=gcc 2CC?=gcc
3CXX?=g++ 3CXX?=g++
4LD?=g++ 4LD?=g++
5CFLAGS=-g -std=c99 -Wall $(DEFINES) -Ilib 5INCLUDE=-Iinclude/
6CXXFLAGS=-g -Wall $(DEFINES) -Ilib 6CFLAGS=-g -std=c99 -Wall $(DEFINES) $(INCLUDE)
7CXXFLAGS=-g -Wall $(DEFINES) $(INCLUDE)
7LDFLAGS=-Llib -lsocdesc `xml2-config --libs` 8LDFLAGS=-Llib -lsocdesc `xml2-config --libs`
8SRC=$(wildcard *.c) 9SRC=$(wildcard *.c)
9SRCXX=$(wildcard *.cpp) 10SRCXX=$(wildcard *.cpp)