third_party_libsnd/reconfigure.mk

32 lines
685 B
Makefile
Raw Normal View History

2007-05-14 09:55:24 +00:00
#!/usr/bin/make -f
2004-03-14 04:57:36 +00:00
config.status: configure
./configure
2007-05-14 09:55:24 +00:00
2004-03-17 10:53:21 +00:00
configure: configure.ac Makefile.am src/config.h.in libtool ltmain.sh
2004-01-21 07:50:16 +00:00
autoconf
2007-05-14 09:55:24 +00:00
2004-03-17 10:53:21 +00:00
Makefile.am: configure.ac
2004-03-14 04:57:36 +00:00
automake --copy --add-missing
2004-01-21 07:50:16 +00:00
src/config.h.in: configure.ac libtool
2007-05-14 09:55:24 +00:00
autoheader
libtool ltmain.sh: aclocal.m4
2004-01-21 07:50:16 +00:00
libtoolize --copy --force
2007-05-14 09:55:24 +00:00
# Need to re-run aclocal whenever acinclude.m4 is modified.
aclocal.m4: acinclude.m4
2004-01-21 07:50:16 +00:00
aclocal
2007-05-14 09:55:24 +00:00
clean:
2004-01-21 07:50:16 +00:00
rm -f libtool ltmain.sh aclocal.m4 Makefile.in src/config.h.in config.cache
2007-05-14 09:55:24 +00:00
2004-01-21 07:50:16 +00:00
# Do not edit or modify anything in this comment block.
# The arch-tag line is a file identity tag for the GNU Arch
# revision control system.
#
# arch-tag: 2b02bfd0-d5ed-489b-a554-2bf36903cca9
2007-05-14 09:55:24 +00:00