Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 547 - (hide 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 niro 532 VERSION=$(shell cat ../VERSION)
2 niro 547 CFLAGS=-Wall -Werror -DVERSION=\"$(VERSION)\" -g $(OPTCFLAGS) -D_FORTIFY_SOURCE=2
3 niro 532
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