Magellan Linux

Contents of /tags/mkinitrd-6_1_3/nash/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 846 - (show annotations) (download)
Mon May 4 18:51:23 2009 UTC (15 years ago) by niro
File size: 523 byte(s)
tagged 'mkinitrd-6_1_3'
1 VERSION=$(shell cat ../VERSION)
2 CFLAGS=-Wall -Werror -DVERSION=\"$(VERSION)\" -g $(OPTCFLAGS) -D_FORTIFY_SOURCE=2
3
4 ARCH := $(patsubst i%86,i386,$(shell uname -m))
5 ARCH := $(patsubst sparc%,sparc,$(ARCH))
6
7 STATIC=-static
8
9 mandir=usr/share/man
10
11 nash: nash.o mount_by_label.o name_to_dev_t.o
12 $(CC) $(STATIC) -g $(LDFLAGS) -o $@ $^
13
14 clean:
15 rm -f nash $(MINILIBC) *.o
16
17 install:
18 mkdir -p $(DESTDIR)/sbin
19 mkdir -p $(DESTDIR)/$(mandir)/man8
20 install -m 755 nash $(DESTDIR)/sbin
21 install -m 644 nash.8 $(DESTDIR)/$(mandir)/man8