# include/nfs/Makefile -- MiNTLib.
# Copyright (C) 2001 Guido Flohr <guido@freemint.de>
# $Id: Makefile,v 1.1 2001/04/13 20:34:07 guido Exp $
#
# This file is part of the MiNTLib project, and may only be used
# modified and distributed under the terms of the MiNTLib project
# license, COPYMINT.  By continuing to use, modify, or distribute
# this file you indicate that you have read the license and
# understand and accept it fully.

SHELL = /bin/sh

srcdir = .
top_srcdir = ../..
csrcdir = $(top_srcdir)/src
subdir = nfs

include $(top_srcdir)/configvars
include $(top_srcdir)/bindist

# Make install-libs work.
LIBS =

default: all

all-here:

include $(top_srcdir)/phony

dont_install_libs = yes
include $(top_srcdir)/rules

includefiles = $(filter %.h, $(MISCFILES))
includefiles += $(filter %.x, $(MISCFILES))

install-include: 
	$(mkinstalldirs) $(includedir)/$(subdir)
	@list='$(includefiles)'; for p in $$list; do \
  	  if test -f $$p; then \
	    echo " $(INSTALL) -m 644 $$p $(includedir)/$(subdir)"; \
	    $(INSTALL) -m 644 $$p $(includedir)/$(subdir); \
	  else :; fi; \
	done
	
uninstall-include:
	@list='$(includefiles)'; \
	for p in $$list; do \
	  if test -f $$p; then \
	    echo " rm -f $(includedir)/$(subdir)/$$p"; \
	    rm -f $(includedir)/$(subdir)/$$p; \
	  else :; fi; \
	done

install-lib:

install-man:

uninstall-lib:

uninstall-man:
