Magellan Linux

Contents of /trunk/mkinitrd-magellan/nash/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 547 - (show annotations) (download)
Sun Sep 2 00:01:59 2007 UTC (16 years, 8 months ago) by niro
File size: 523 byte(s)
-fixed CFLAGS

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