diff options
author | Wolfgang Denk <wd@denx.de> | 2008-09-09 17:55:31 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-09-09 17:55:31 +0200 |
commit | 4bc07c368076560ed7fa4c9f987c71a8521488a9 (patch) | |
tree | 1894ba0fe60e87c18d289413ffc3d664164c0fc2 /board/trab/Makefile | |
parent | 3b20fd83c73c22acfcb0c6663be747bd5c8b7011 (diff) |
trab: fix build problem after change to use do_div()
We must link with libgeneric now.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/trab/Makefile')
-rw-r--r-- | board/trab/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/trab/Makefile b/board/trab/Makefile index 2402577a509..6dfcb87096c 100644 --- a/board/trab/Makefile +++ b/board/trab/Makefile @@ -50,6 +50,7 @@ $(LIB): $(obj).depend $(OBJS) $(SOBJS) $(obj)trab_fkt.srec: $(OBJS_FKT) $(LIB) $(LD) -g -Ttext $(LOAD_ADDR) -o $(<:.o=) -e trab_fkt $^ $(LIB) \ -L$(obj)../../examples -lstubs \ + -L$(obj)../../lib_generic -lgeneric \ -L$(gcclibdir) -lgcc $(OBJCOPY) -O srec $(<:.o=) $@ |