##
## Copyright (c)  1995 - 2000, The Hebrew University of Jerusalem.
## All rights reserved.
##
## Permission to use, copy and distribute this software is hereby granted
## under the terms of version 2 or any later version of the GNU General
## Public License, as published by the Free Software Foundation.
##
## You should have received a copy of the GNU General Public License along
## with this package; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
##
## THE HEBREW UNIVERSITY OF JERUSALEM  PROVIDES THIS SOFTWARE IN ITS "AS IS"
## CONDITION. THE HEBREW UNIVERSITY OF JERUSALEM DISCLAIMS  ANY LIABILITY OF
## ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
##

##
## Author(s): Ariel Eizenberg
##

include ../../Rules.make

SRC = migrate.c

CFLAGS += -I../../lib/moslib 

LIBS = ../../lib/moslib/libmos.a

all: migrate migrate.1

migrate: $(SRC)
	$(CC) $(CFLAGS) -o $@ $? $(LIBS)

migrate.1: migrate.man
	cp $? $@

install: all
	$(INSTALL) -d -m 0755 $(PREFIX)/bin
	$(INSTALL) -d -m 0755 $(PREFIX)/man/man1
	$(INSTALL) -c -m 0444 migrate.1 $(PREFIX)/man/man1
	$(INSTALL) -c -m 0555 migrate $(PREFIX)/bin

clean: 
	$(CLEANALL)
	rm -f migrate migrate.1
