You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
411 B
18 lines
411 B
![]()
13 years ago
|
prefix ?= /usr
|
||
|
bindir ?= ${prefix}/bin
|
||
|
strip ?= -s
|
||
|
|
||
|
all: dracut-install
|
||
|
|
||
|
dracut-install: dracut-install.c hashmap.c log.c util.c
|
||
|
gcc -std=gnu99 -O2 -g -Wall -o dracut-install dracut-install.c hashmap.c log.c util.c
|
||
|
|
||
|
install: dracut-install
|
||
|
install $(strip) -m 0755 dracut-install $(DESTDIR)$(bindir)/dracut-install
|
||
|
|
||
|
clean:
|
||
|
rm -f dracut-install *~
|
||
|
|
||
|
indent:
|
||
|
indent -i8 -nut -br -linux -l120 dracut-install.c
|