~ubuntu-branches/debian/squeeze/multipath-tools/squeeze

« back to all changes in this revision

Viewing changes to path_priority/pp_random/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Guido Günther
  • Date: 2010-04-11 13:22:35 UTC
  • mfrom: (8.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20100411132235-p0xdu9sy65mlx32z
Tags: 0.4.8+git0.761c66f-8
* [16268d8] Drop path from dmsetup_env call - thanks to Ferenc Wagner
* [2f3bdd5] Use $name in multipath.udev as well - thanks to Ferenc Wagner
  for testing
* [c978487] Don't pass -g on mips(el) to work around a binutils bug.  See
  http://sources.redhat.com/bugzilla/show_bug.cgi?id=10144 for details.
* [9daf438] Make sure we discover multipaths before checkfs/mountall runs
  This covers the cornercase where e.g. /home is on multipath (but not on
  LVM) and multipath-tols aren't started via initramfs. (Closes: #577172)
* [f7cc840] Bump standards version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
EXEC            = mpath_prio_random
2
 
BUILD           = glibc
3
 
OBJS            = pp_random.o
4
 
 
5
 
TOPDIR          = ../..
6
 
include $(TOPDIR)/Makefile.inc
7
 
 
8
 
all: $(BUILD)
9
 
 
10
 
glibc:  $(OBJS)
11
 
        $(CC) -o $(EXEC) $(OBJS) $(LDFLAGS)
12
 
 
13
 
klibc:  $(OBJS)
14
 
        $(CC) -static -o $(EXEC) $(OBJS)
15
 
 
16
 
install: $(EXEC)
17
 
        $(INSTALL_PROGRAM) -m 755 $(EXEC) $(DESTDIR)$(bindir)/$(EXEC)
18
 
 
19
 
uninstall:
20
 
        rm $(DESTDIR)$(bindir)/$(EXEC)
21
 
clean:  
22
 
        rm -f *.o $(EXEC)