Magellan Linux

Annotation of /alx-src/tags/kernel26-2.6.12-alx-r9/scripts/mkmakefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 628 - (hide annotations) (download)
Wed Mar 4 10:48:58 2009 UTC (15 years, 6 months ago) by niro
Original Path: alx-src/trunk/kernel26-alx/linux/scripts/mkmakefile
File size: 563 byte(s)
import linux sources based on 2.6.12-alx-r9:
 -using linux-2.6.12.6
 -using 2.6.12-ck6 patch set
 -using fbsplash-0.9.2-r3
 -using vesafb-tng-0.9-rc7
 -using squashfs-2.2
 -added cddvd-cmdfilter-drop.patch as ck dropped it
 -added via-epia-dri (cle266) patch
 -added zd1211-svn-32 wlan driver (http://zd1211.ath.cx/download/)
 -added debian patches to zd1211 for wep256 etc

1 niro 628 #!/bin/sh
2     # Generates a small Makefile used in the root of the output
3     # directory, to allow make to be started from there.
4     # The Makefile also allow for more convinient build of external modules
5    
6     # Usage
7     # $1 - Kernel src directory
8     # $2 - Output directory
9     # $3 - version
10     # $4 - patchlevel
11    
12    
13     cat << EOF
14     # Automatically generated by $0: don't edit
15    
16     VERSION = $3
17     PATCHLEVEL = $4
18    
19     KERNELSRC := $1
20     KERNELOUTPUT := $2
21    
22     MAKEFLAGS += --no-print-directory
23    
24     all:
25     \$(MAKE) -C \$(KERNELSRC) O=\$(KERNELOUTPUT)
26    
27     %::
28     \$(MAKE) -C \$(KERNELSRC) O=\$(KERNELOUTPUT) \$@
29    
30     EOF
31