diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2013-06-13 01:50:14 +0200 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2013-06-13 02:25:08 +0200 |
| commit | 73db73dbd3c5c6a27e022a5c724136ca6fc2ffe8 (patch) | |
| tree | 5e73c4b4477b2f47f4581f68d800ef4cb7b8a37a /utils/regtools/lib/Makefile | |
| parent | 7143ea681c377fe5901bd79801366a26ae0d394a (diff) | |
| download | rockbox-73db73dbd3c5c6a27e022a5c724136ca6fc2ffe8.zip rockbox-73db73dbd3c5c6a27e022a5c724136ca6fc2ffe8.tar.gz rockbox-73db73dbd3c5c6a27e022a5c724136ca6fc2ffe8.tar.bz2 rockbox-73db73dbd3c5c6a27e022a5c724136ca6fc2ffe8.tar.xz | |
regtools: modify description format and refactor tools
Change the XML description to unify multi dev/reg in a clean
fashion. Move the description parser to its own library. Fix
the tester and headergen tools to work with the new format and
library. Move the STMP3700/3780 descriptions to the new format
(and fixes many errors as well). Drop the hwemulgen tool
in favor on the upcoming hwstub tools revamp.
Change-Id: I7119a187aab5c8b083cc5228cb1b248ee29f184d
Diffstat (limited to 'utils/regtools/lib/Makefile')
| -rw-r--r-- | utils/regtools/lib/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/utils/regtools/lib/Makefile b/utils/regtools/lib/Makefile new file mode 100644 index 0000000..ef8d4c0 --- /dev/null +++ b/utils/regtools/lib/Makefile @@ -0,0 +1,23 @@ +CC=gcc +CXX=g++ +AR=ar +CFLAGS=-Wall -O2 `xml2-config --cflags` -std=c99 -g -fPIC +CXXFLAGS=-Wall -O2 `xml2-config --cflags` -g -fPIC +LIB=libsocdesc.a +SRC=$(wildcard *.c) +SRCXX=$(wildcard *.cpp) +OBJ=$(SRC:.c=.o) $(SRCXX:.cpp=.o) + +all: $(LIB) $(EXEC) + +%.o: %.c + $(CC) $(CFLAGS) -c -o $@ $< + +%.o: %.cpp + $(CXX) $(CXXFLAGS) -c -o $@ $< + +$(LIB): $(OBJ) + $(AR) rcs $@ $^ + +clean: + rm -rf $(OBJ) $(LIB)
\ No newline at end of file |