File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / TSRM / build.mk
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:34 2012 UTC (12 years, 1 month ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, HEAD
php 5.4.3+patches

    1: # Makefile to generate build tools
    2: #
    3: # Standard usage:
    4: #        make -f build.mk
    5: #
    6: # Written by Sascha Schumann
    7: #
    8: # $Id: build.mk,v 1.1.1.2 2012/05/29 12:34:34 misho Exp $ 
    9: 
   10: 
   11: LT_TARGETS = ltmain.sh ltconfig
   12: 
   13: config_h_in = tsrm_config.h.in
   14: 
   15: makefile_am_files = Makefile.am
   16: makefile_in_files = $(makefile_am_files:.am=.in)
   17: makefile_files    = $(makefile_am_files:e.am=e)
   18: 
   19: targets = $(makefile_in_files) $(LT_TARGETS) configure $(config_h_in)
   20: 
   21: all: $(targets)
   22: 
   23: clean:
   24: 	rm -f $(targets)
   25: 
   26: $(LT_TARGETS):
   27: 	rm -f $(LT_TARGETS)
   28: 	libtoolize --automake $(AMFLAGS) -f
   29: 
   30: $(makefile_in_files): $(makefile_am_files)
   31: 	automake -a -i $(AMFLAGS) $(makefile_files)
   32: 
   33: aclocal.m4: configure.in acinclude.m4
   34: 	aclocal
   35: 
   36: $(config_h_in): configure.in
   37: # explicitly remove target since autoheader does not seem to work 
   38: # correctly otherwise (timestamps are not updated)
   39: 	@rm -f $@
   40: 	autoheader
   41: 
   42: configure: aclocal.m4 configure.in
   43: 	autoconf

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>