config.shared: Change "pic" to depend on $(PICFLAG), not on $(enable_shared).
* config.shared: Change "pic" to depend on $(PICFLAG), not on $(enable_shared). From-SVN: r33920
This commit is contained in:
parent
c7a79a32a5
commit
63b8af0cca
2 changed files with 14 additions and 7 deletions
|
@ -1,3 +1,7 @@
|
|||
2000-05-15 David Edelsohn <edelsohn@gnu.org>
|
||||
|
||||
* config.shared: Change "pic" to depend on $(PICFLAG), not
|
||||
on $(enable_shared).
|
||||
|
||||
2000-05-11 Robert Lipe <robertlipe@usa.net>
|
||||
|
||||
|
|
|
@ -267,23 +267,26 @@ echo >&2 '.SUFFIXES: .o .C .cc .c'
|
|||
echo >&2 'COMPILE.c = $(CC) -c $(XCFLAGS) $(CINCLUDES) $(MT_CFLAGS)'
|
||||
echo >&2 '.c.o:'
|
||||
if [ "${LIBDIR}" = "yes" ]; then
|
||||
echo >&2 ' test x"$(enable_shared)" != xyes ||\'
|
||||
echo >&2 ' $(COMPILE.c) $(PICFLAG) $< -o pic/$@'
|
||||
echo >&2 ' if [ x"$(PICFLAG)" != x ]; then \'
|
||||
echo >&2 ' $(COMPILE.c) $(PICFLAG) $< -o pic/$@; \'
|
||||
echo >&2 ' else true; fi'
|
||||
fi
|
||||
echo >&2 ' $(COMPILE.c) $<'
|
||||
[ "${TOUCH_ON_COMPILE}" = "yes" ] && echo >&2 ' @touch stamp'
|
||||
echo >&2 'COMPILE.cc = $(CXX) -c $(XCXXFLAGS) $(CXXINCLUDES) $(MT_CFLAGS)'
|
||||
echo >&2 '.C.o:'
|
||||
if [ "${LIBDIR}" = "yes" ]; then
|
||||
echo >&2 ' test x"$(enable_shared)" != xyes ||\'
|
||||
echo >&2 ' $(COMPILE.cc) $(PICFLAG) $< -o pic/$@'
|
||||
echo >&2 ' if [ x"$(PICFLAG)" != x ]; then \'
|
||||
echo >&2 ' $(COMPILE.cc) $(PICFLAG) $< -o pic/$@; \'
|
||||
echo >&2 ' else true; fi'
|
||||
fi
|
||||
echo >&2 ' $(COMPILE.cc) $<'
|
||||
[ "${TOUCH_ON_COMPILE}" = "yes" ] && echo >&2 ' @touch stamp'
|
||||
echo >&2 '.cc.o:'
|
||||
if [ "${LIBDIR}" = "yes" ]; then
|
||||
echo >&2 ' test x"$(enable_shared)" != xyes || \'
|
||||
echo >&2 ' $(COMPILE.cc) $(PICFLAG) $< -o pic/$@'
|
||||
echo >&2 ' if [ x"$(PICFLAG)" != x ]; then \'
|
||||
echo >&2 ' $(COMPILE.cc) $(PICFLAG) $< -o pic/$@; \'
|
||||
echo >&2 ' else true; fi'
|
||||
fi
|
||||
echo >&2 ' $(COMPILE.cc) $<'
|
||||
[ "${TOUCH_ON_COMPILE}" = "yes" ] && echo >&2 ' @touch stamp'
|
||||
|
@ -299,7 +302,7 @@ fi
|
|||
if [ "${LIBDIR}" = "yes" ]; then
|
||||
echo >&2 ''
|
||||
echo >&2 'stamp-picdir:'
|
||||
echo >&2 ' if [ x"$(enable_shared)" = xyes ] && [ ! -d pic ]; then \'
|
||||
echo >&2 ' if [ x"$(PICFLAG)" != x ] && [ ! -d pic ]; then \'
|
||||
echo >&2 ' mkdir pic; \'
|
||||
echo >&2 ' else true; fi'
|
||||
echo >&2 ' touch stamp-picdir'
|
||||
|
|
Loading…
Add table
Reference in a new issue