git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
924fbaa
)
fixed $(A) file creation
author
kramm
<kramm>
Sun, 17 Jun 2007 16:03:38 +0000
(16:03 +0000)
committer
kramm
<kramm>
Sun, 17 Jun 2007 16:03:38 +0000
(16:03 +0000)
lib/python/Makefile.in
patch
|
blob
|
history
diff --git
a/lib/python/Makefile.in
b/lib/python/Makefile.in
index
5f61562
..
e06095d
100644
(file)
--- a/
lib/python/Makefile.in
+++ b/
lib/python/Makefile.in
@@
-40,7
+40,8
@@
GFX_DEPS=../libpdf$(A) ../devices/swf.$(O) ../librfxswf$(A) ../devices/arts.$(O)
gfx.$(SLEXT): gfx.$(O) $(GFX_DEPS) Makefile
$(L) -g $(SHARED) gfx.$(O) -o gfx.$(SLEXT) $(GFX_DEPS) $(PYTHON_LIB) $(LIBS) $(CXXLIBS)
gfx$(A): gfx.$(O) $(GFX_DEPS) Makefile
- $(AR) cru gfx$(A) gfx.$(O) $(GFX_DEPS)
+ mkdir tmp;cd tmp;for file in $(GFX_DEPS);do ar x ../$$file || cp ../$$file .;done
+ $(AR) cru gfx$(A) gfx.$(O) tmp/*.$(O)
$(RANLIB) gfx$(A)
#TODO: