1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
MP4H_DIR = ../wml_backend/p2_mp4h
MP4H_min = $(MP4H_DIR)/Makefile.in
MP4H_cfg = $(MP4H_DIR)/configure
all: run_modules_file $(MP4H_min) $(MP4H_cfg) ../configure noautocache
../configure: configure.ac aclocal.m4
rm -f ../configure
autoconf configure.ac >../configure
./configure.fixit ../configure
chmod a+x ../configure
$(MP4H_min): $(MP4H_DIR)/Makefile.am
cd $(MP4H_DIR) && automake
$(MP4H_cfg): $(MP4H_DIR)/configure.ac
cd $(MP4H_DIR) && autoconf
clean:
distclean:
-rm -f ../config.status ../config.cache ../config.log
realclean: distclean
-rm -f ../configure
noautocache:
rm -fr autom4te.cache
run_modules_file:
sh prep_modules_files.sh
|