*** empty log message ***

This commit is contained in:
hyung-hwan 2005-01-19 09:26:48 +00:00
parent dba39b5e97
commit ed6025aeb9
2 changed files with 39 additions and 2 deletions

View File

@ -1,6 +1,6 @@
AC_PREREQ(2.59)
AC_INIT([xpkit], [deb-0.1.0])
AC_REVISION([$Revision: 1.5 $])
AC_REVISION([$Revision: 1.6 $])
# Checks for programs.
AC_PROG_CXX
@ -25,5 +25,5 @@ AC_FUNC_MEMCMP
AC_FUNC_REALLOC
AC_CHECK_FUNCS([memset])
AC_CONFIG_FILES([build/Makefile])
AC_CONFIG_FILES([Makefile build/Makefile])
AC_OUTPUT

37
ase/makefile.in Normal file
View File

@ -0,0 +1,37 @@
SUBDIRS=c
all:
@for i in $(SUBDIRS); \
do \
if [ ! -d $$i ]; \
then \
echo Error: $$i not a directory; \
exit 1; \
fi; \
cd $$i; \
if make $@; \
then \
echo > /dev/null; \
else \
exit 1; \
fi; \
cd ..; \
done
clean:
@for i in $(SUBDIRS); \
do \
if [ ! -d $$i ]; \
then \
echo Error: $$i not a directory; \
exit 1; \
fi; \
cd $$i; \
if make $@; \
then \
echo > /dev/null; \
else \
exit 1; \
fi; \
cd ..; \
done