iodine/Makefile

41 lines
782 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)
$(INSTALL) $(INSTALL_FLAGS) bin/iodine $(DESTDIR)$(prefix)/iodine
$(INSTALL) $(INSTALL_FLAGS) bin/iodined $(DESTDIR)$(prefix)/iodined
$(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(mandir)/man8
$(INSTALL) $(INSTALL_FLAGS) man/iodine.8 $(DESTDIR)$(mandir)/man8/iodine.8
2007-02-10 19:29:19 +02:00
uninstall:
$(RM) $(RM_FLAGS) $(sbindir)/iodine
$(RM) $(RM_FLAGS) $(sbindir)/iodined
$(RM) $(RM_FLAGS) $(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