~ubuntu-branches/ubuntu/hardy/klibc/hardy-updates

« back to all changes in this revision

Viewing changes to usr/kinit/ipconfig/Kbuild

  • Committer: Bazaar Package Importer
  • Author(s): Jeff Bailey
  • Date: 2006-01-04 20:24:52 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060104202452-ec4v3n829rymukuv
Tags: 1.1.15-0ubuntu1
* New upstream version.

* Patch to fix compilation on parisc64 kernels.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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)