home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / debian / ruleset / arches / uml.mk < prev    next >
Encoding:
Text File  |  2005-11-02  |  2.1 KB  |  61 lines

  1. ######################### -*- Mode: Makefile-Gmake -*- ########################
  2. ## uml.mk --- 
  3. ## Author           : Manoj Srivastava ( srivasta@glaurung.internal.golden-gryphon.com ) 
  4. ## Created On       : Mon Oct 31 18:30:26 2005
  5. ## Created On Node  : glaurung.internal.golden-gryphon.com
  6. ## Last Modified By : Manoj Srivastava
  7. ## Last Modified On : Mon Oct 31 18:30:26 2005
  8. ## Last Machine Used: glaurung.internal.golden-gryphon.com
  9. ## Update Count     : 0
  10. ## Status           : Unknown, Use with caution!
  11. ## HISTORY          : 
  12. ## Description      : handle the architecture specific variables.
  13. ## 
  14. ## arch-tag: 5d5079a2-4726-4e2d-8226-6e8edc22bea8
  15. ## 
  16. ## 
  17. ## This program is free software; you can redistribute it and/or modify
  18. ## it under the terms of the GNU General Public License as published by
  19. ## the Free Software Foundation; either version 2 of the License, or
  20. ## (at your option) any later version.
  21. ##
  22. ## This program is distributed in the hope that it will be useful,
  23. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  25. ## GNU General Public License for more details.
  26. ##
  27. ## You should have received a copy of the GNU General Public License
  28. ## along with this program; if not, write to the Free Software
  29. ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  30. ##
  31. ###############################################################################
  32.  
  33. DEBCONFIG = $(CONFDIR)/config.um
  34.  
  35.  
  36. ifneq ($(shell if [ $(VERSION)  -ge  2 ]  && [ $(PATCHLEVEL) -ge 6 ] &&    \
  37.                   [ $(SUBLEVEL) -ge 9 ]; then echo new;                   \
  38.              elif [ $(VERSION)  -ge  2 ]  && [ $(PATCHLEVEL) -ge r ]; then \
  39.                                           echo new;                        \
  40.              elif [ $(VERSION)  -ge  3 ]; then echo new; fi),)
  41.   target  = vmlinux
  42.   kimage := vmlinux
  43. else
  44.   target  = linux
  45.   kimage := linux
  46. endif
  47.  
  48.  
  49. kimagesrc  = $(strip $(kimage))
  50. INT_IMAGE_DESTDIR=$(DOCDIR)
  51. IMAGEDIR = /usr/bin
  52. kimagedest = $(TMPTOP)/$(IMAGEDIR)/linux-$(version)
  53. loaderdep=
  54. loaderdoc=
  55. KERNEL_ARCH = um
  56. architecture = i386
  57.  
  58. #Local variables:
  59. #mode: makefile
  60. #End:
  61.