Makefile.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jul 03 22:16:42 2007 +0000 (2007-07-03)
changeset 199 d799643901c3
parent 197 9383bf4a2e2e
child 223 918b55e0e4a1
permissions -rw-r--r--
Make checking the linux installed headers optional (instead of systematic).
     1 # Makefile.in for building crosstool-NG
     2 # This file serves as source for the ./configure operation
     3 
     4 all: build
     5 
     6 ###############################################################################
     7 # Configuration variables
     8 
     9 VERSION:= @@VERSION@@
    10 BINDIR := @@BINDIR@@
    11 LIBDIR := @@LIBDIR@@
    12 DOCDIR := @@DOCDIR@@
    13 MANDIR := @@MANDIR@@
    14 DATE   := @@DATE@@
    15 MAKE   := $(shell which make || type -p make || echo /usr/bin/make)
    16 
    17 ###############################################################################
    18 # Global make rules
    19 
    20 build: build-bin build-lib build-doc
    21 
    22 install: build install-bin install-lib install-doc
    23 
    24 clean: clean-bin clean-lib clean-doc
    25 
    26 distclean: clean
    27 	@rm -f Makefile
    28 
    29 uninstall: uninstall-bin uninstall-lib uninstall-doc
    30 
    31 ###############################################################################
    32 # Specific make rules
    33 
    34 #--------------------------------------
    35 # Build rules
    36 
    37 build-bin: ct-ng
    38 	@chmod a+x ct-ng
    39 
    40 build-lib:
    41 
    42 build-doc: docs/ct-ng.1
    43 
    44 %: %.in
    45 	@sed -r -e 's,@@CT_MAKE@@,$(MAKE),g;'       \
    46 	        -e 's,@@CT_BINDIR@@,$(BINDIR),g;'   \
    47 	        -e 's,@@CT_LIBDIR@@,$(LIBDIR),g;'   \
    48 	        -e 's,@@CT_DOCDIR@@,$(DOCDIR),g;'   \
    49 	        -e 's,@@CT_MANDIR@@,$(MANDIR),g;'   \
    50 	        -e 's,@@CT_VERSION@@,$(VERSION),g;'	\
    51 	        -e 's,@@CT_DATE@@,$(DATE),g;'       \
    52 	     $@.in >$@
    53 
    54 #--------------------------------------
    55 # Clean rules
    56 
    57 clean-bin:
    58 	@rm -f ct-ng
    59 
    60 clean-lib:
    61 
    62 clean-doc:
    63 	@rm -f docs/ct-ng.1
    64 
    65 #--------------------------------------
    66 # Install rules
    67 
    68 install-bin: $(BINDIR)
    69 	@install -m 755 ct-ng $(BINDIR)/ct-ng
    70 
    71 install-lib: $(LIBDIR) install-lib-main install-lib-samples
    72 
    73 install-lib-main: $(LIBDIR)
    74 	@for src_dir in config kconfig patches scripts tools; do            \
    75 	     tar cf - --exclude=.svn $${src_dir} |(cd $(LIBDIR); tar xf -); \
    76 	 done
    77 	@for src_file in Makefile.steps version; do                 \
    78 	     install -m 644 $${src_file} $(LIBDIR)/$${src_file};    \
    79 	 done
    80 
    81 # Samples need a little love:
    82 #  - change every occurence of CT_TOP_DIR to CT_LIB_DIR
    83 install-lib-samples: $(LIBDIR) install-lib-main
    84 	@tar cf - --exclude=.svn samples |(cd $(LIBDIR); tar xf -)
    85 	@for samp_file in $(LIBDIR)/samples/*/crosstool.config; do                  \
    86 	     sed -r -i -e 's,\$$\{CT_TOP_DIR\},\$$\{CT_LIB_DIR\},g;' $${samp_file}; \
    87 	 done
    88 
    89 install-doc: $(DOCDIR) $(MANDIR)
    90 	@for doc_file in CREDITS docs/overview.txt; do  \
    91 	     install -m 644 "$${doc_file}" $(DOCDIR);   \
    92 	 done
    93 	@install -m 644 docs/ct-ng.1 $(MANDIR)
    94 
    95 $(BINDIR) $(LIBDIR) $(DOCDIR) $(MANDIR)::
    96 	@install -m 755 -d $@
    97 
    98 
    99 #--------------------------------------
   100 # Uninstall rules
   101 
   102 uninstall-bin:
   103 	@rm -f $(BINDIR)/ct-ng
   104 
   105 uninstall-lib:
   106 	@rm -rf $(LIBDIR)
   107 
   108 uninstall-doc:
   109 	@rm -rf $(DOCDIR)
   110 	@rm -f $(MANDIR)/ct-ng.1