package kojivmd
This commit is contained in:
parent
048cda0496
commit
e1fc769c70
4 changed files with 76 additions and 1 deletions
34
vm/Makefile
Normal file
34
vm/Makefile
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
|
||||
BINFILES = kojivmd
|
||||
SHAREFILES = kojikamid
|
||||
|
||||
_default:
|
||||
@echo "nothing to make. try make install"
|
||||
|
||||
clean:
|
||||
rm -f *.o *.so *.pyc *~
|
||||
|
||||
|
||||
install:
|
||||
@if [ "$(DESTDIR)" = "" ]; then \
|
||||
echo " "; \
|
||||
echo "ERROR: A destdir is required"; \
|
||||
exit 1; \
|
||||
fi
|
||||
|
||||
mkdir -p $(DESTDIR)/usr/sbin
|
||||
install -p -m 755 $(BINFILES) $(DESTDIR)/usr/sbin
|
||||
|
||||
mkdir -p $(DESTDIR)/usr/share/kojivmd
|
||||
install -p -m 644 $(SHAREFILES) $(DESTDIR)/usr/share/kojivmd
|
||||
|
||||
mkdir -p $(DESTDIR)/etc/rc.d/init.d
|
||||
install -p -m 755 kojivmd.init $(DESTDIR)/etc/rc.d/init.d/kojivmd
|
||||
|
||||
mkdir -p $(DESTDIR)/etc/sysconfig
|
||||
install -p -m 644 kojivmd.sysconfig $(DESTDIR)/etc/sysconfig/kojivmd
|
||||
|
||||
mkdir -p $(DESTDIR)/etc/kojivmd
|
||||
install -p -m 644 kojivmd.conf $(DESTDIR)/etc/kojivmd/kojivmd.conf
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue