Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/kinit/ipconfig/Kbuild

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 8 months ago) by niro
File size: 552 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 #
2 # Kbuild file for ipconfig
3 #
4
5 static-y := static/ipconfig
6 shared-y := shared/ipconfig
7
8 # common .o files
9 objs := main.o netdev.o packet.o
10 # dhcp
11 objs += dhcp_proto.o
12 # bootp
13 objs += bootp_proto.o
14
15
16 # TODO - do we want a stripped version
17 # TODO - do we want the static.g + shared.g directories?
18
19
20 # Create built-in.o with all object files (used by kinit)
21 lib-y := $(objs)
22
23 # .o files used to built executables
24 static/ipconfig-y := $(objs)
25 shared/ipconfig-y := $(objs)
26
27 # Cleaning
28 clean-dirs := static shared
29
30 # install binary
31 install-y := $(shared-y)