188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
dnl Add appropriate dependencies
EXTRA_KIT_DEPS="cvfs.tcl.h"
EXTRA_VFS_OBJS="${EXTRA_VFS_OBJS} cvfs_data_tcl.o"
]
)
AC_SUBST(EXTRA_KIT_DEPS)
dnl Put correct Makefile template in place
rm -f Makefile.in
cp Makefile.${TARGET}.in Makefile.in
dnl Produce output
AC_OUTPUT(Makefile Makefile.common)
|
>
|
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
dnl Add appropriate dependencies
EXTRA_KIT_DEPS="cvfs.tcl.h"
EXTRA_VFS_OBJS="${EXTRA_VFS_OBJS} cvfs_data_tcl.o"
]
)
AC_SUBST(EXTRA_KIT_DEPS)
AC_SUBST(LDFLAGS_ADD)
dnl Put correct Makefile template in place
rm -f Makefile.in
cp Makefile.${TARGET}.in Makefile.in
dnl Produce output
AC_OUTPUT(Makefile Makefile.common)
|