1
0
mirror of https://github.com/yarrick/iodine.git synced 2024-11-22 13:06:06 +03:00
iodine/Makefile

44 lines
938 B
Makefile
Raw Normal View History

prefix=/usr/local
sbindir=$(prefix)/sbin
datadir=$(prefix)/share
mandir=$(datadir)/man
2007-02-10 20:29:19 +03:00
DESTDIR=
INSTALL=install
INSTALL_FLAGS=
MKDIR=mkdir
MKDIR_FLAGS=-p
2007-02-10 20:29:19 +03:00
RM=rm
RM_FLAGS=-f
2006-11-09 22:09:47 +03:00
all:
2006-11-18 16:37:37 +03:00
@(cd src; make all)
2006-11-09 22:09:47 +03:00
2007-02-10 20:29:19 +03:00
install: all
$(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(sbindir)
2007-06-17 16:54:49 +04:00
$(INSTALL) $(INSTALL_FLAGS) bin/iodine $(DESTDIR)$(sbindir)/iodine
chmod 755 $(DESTDIR)$(sbindir)/iodine
$(INSTALL) $(INSTALL_FLAGS) bin/iodined $(DESTDIR)$(sbindir)/iodined
chmod 755 $(DESTDIR)$(sbindir)/iodined
$(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(mandir)/man8
$(INSTALL) $(INSTALL_FLAGS) man/iodine.8 $(DESTDIR)$(mandir)/man8/iodine.8
2007-06-17 16:54:49 +04:00
chmod 644 $(DESTDIR)$(mandir)/man8/iodine.8
2007-02-10 20:29:19 +03:00
uninstall:
2007-06-24 14:33:40 +04:00
$(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodine
$(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodined
$(RM) $(RM_FLAGS) $(DESTDIR)$(mandir)/man8/iodine.8
2007-02-10 20:29:19 +03:00
test: all
2007-01-31 01:16:49 +03:00
@(cd tests; make all)
2006-11-09 22:09:47 +03:00
clean:
@echo "Cleaning..."
2006-11-18 16:37:37 +03:00
@(cd src; make clean)
@(cd tests; make clean)
2006-11-09 22:09:47 +03:00
@rm -rf bin