# Makefile for ffcall

#### Start of system configuration section. ####

# Directories used by "make install":
prefix = @prefix@
local_prefix = /usr/local
exec_prefix = $(prefix)
libdir = $(exec_prefix)/lib
includedir = $(local_prefix)/include
mandir = $(exec_prefix)/man

# Programs used by "make":
RM = rm -f
@SET_MAKE@

#### End of system configuration section. ####

SHELL = /bin/sh

all : force
	cd @subdir@; $(MAKE) all

install : force
	cd @subdir@; $(MAKE) install

installdirs : force
	cd @subdir@; $(MAKE) installdirs

uninstall : force
	cd @subdir@; $(MAKE) uninstall

check : force
	cd @subdir@; $(MAKE) check

mostlyclean : force
	cd @subdir@; $(MAKE) mostlyclean

clean : force
	cd @subdir@; $(MAKE) clean

distclean : force
	cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
	$(RM) config.status config.log config.cache Makefile

maintainer-clean : force
	cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
	$(RM) config.status config.log config.cache Makefile

force :

