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 19:29:19 +02:00
DESTDIR=
INSTALL=install
INSTALL_FLAGS=
MKDIR=mkdir
MKDIR_FLAGS=-p
2007-02-10 19:29:19 +02:00
RM=rm
RM_FLAGS=-f
2006-11-09 21:09:47 +02:00
all:
2006-11-18 15:37:37 +02:00
@(cd src; make all)
2006-11-09 21:09:47 +02:00
2007-02-10 19:29:19 +02:00
install: all
$(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(sbindir)
2007-06-17 15:54:49 +03: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 15:54:49 +03:00
chmod 644 $(DESTDIR)$(mandir)/man8/iodine.8
2007-02-10 19:29:19 +02:00
uninstall:
2007-06-24 13:33:40 +03:00
$(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodine
$(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodined
$(RM) $(RM_FLAGS) $(DESTDIR)$(mandir)/man8/iodine.8
2007-02-10 19:29:19 +02:00
test: all
2007-01-31 00:16:49 +02:00
@(cd tests; make all)
2006-11-09 21:09:47 +02:00
clean:
@echo "Cleaning..."
2006-11-18 15:37:37 +02:00
@(cd src; make clean)
@(cd tests; make clean)
2006-11-09 21:09:47 +02:00
@rm -rf bin