~ubuntu-branches/ubuntu/breezy/efibootmgr/breezy

« back to all changes in this revision

Viewing changes to src/efibootmgr/module.mk

  • Committer: Bazaar Package Importer
  • Author(s): Bdale Garbee
  • Date: 2005-03-10 11:27:00 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050310112700-zhrfaz6gwvhode8u
Tags: 0.5.1-1
new upstream version. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
efibootmgr_OBJECTS := efibootmgr.o
3
3
efibootmgr_TARGETS := efibootmgr
4
4
efibootmgr_FULLTARGET :=  \
5
 
        $(patsubst %, $(efibootmgr_SRCDIR)/%, $(efibootmgr_TARGETS))
 
5
        $(patsubst %, $(efibootmgr_SRCDIR)/%, $(efibootmgr_TARGETS))
6
6
efibootmgr_FULLOBJECT :=  \
7
 
        $(patsubst %, $(efibootmgr_SRCDIR)/%, $(efibootmgr_OBJECT))
 
7
        $(patsubst %, $(efibootmgr_SRCDIR)/%, $(efibootmgr_OBJECT))
8
8
 
9
9
efibootmgr_LIBS    := crc32.o disk.o efi.o efichar.o gpt.o scsi_ioctls.o \
10
 
                      unparse_path.o
 
10
                      unparse_path.o efivars_procfs.o efivars_sysfs.o
11
11
efibootmgr_LIBDIR  := src/lib
12
12
efibootmgr_FULLLIB := \
13
 
        $(patsubst %,$(efibootmgr_LIBDIR)/%,$(efibootmgr_LIBS))
 
13
        $(patsubst %,$(efibootmgr_LIBDIR)/%,$(efibootmgr_LIBS))
 
14
LIBS = -lpci
14
15
 
15
 
ALLDEPS += $(efibootmgr_FULLTARGET) 
 
16
ALLDEPS += $(efibootmgr_FULLTARGET)
16
17
CLEANLIST += $(efibootmgr_FULLTARGET)
17
18
CLEANLIST += $(efibootmgr_FULLOBJECT)
18
 
bindir_TARGETS += $(efibootmgr_FULLTARGET) 
 
19
bindir_TARGETS += $(efibootmgr_FULLTARGET)
19
20
 
20
21
$(efibootmgr_FULLTARGET): \
21
 
        $(efibootmgr_FULLOBJECT) \
22
 
        $(efibootmgr_FULLLIB)
 
22
        $(efibootmgr_FULLOBJECT) \
 
23
        $(efibootmgr_FULLLIB) \
 
24
        $(LIBS)