Allow system specific common and runtime files
git-svn-id: svn://svn.cc65.org/cc65/trunk@785 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
0bb81e5c36
commit
02b81bdd69
1 changed files with 7 additions and 1 deletions
|
@ -126,7 +126,13 @@ geoslib:
|
|||
$(MAKE) -C $$i || exit 1; \
|
||||
done
|
||||
for i in common runtime; do \
|
||||
$(AR) a geos.lib $$i/*.o;\
|
||||
for objfile in $$i/*.o; do \
|
||||
if [ -f geos/$$objfile ]; then \
|
||||
$(AR) a geos.lib geos/$$objfile; \
|
||||
else \
|
||||
$(AR) a geos.lib $$objfile; \
|
||||
fi; \
|
||||
done \
|
||||
done
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Reference in a new issue