ncursesw-morphos/Ada95/Makefile.in
Thomas E. Dickey 3a9b6a3bf0 ncurses 4.1
1997-05-14 23:00:00 -05:00

57 lines
2.0 KiB
Makefile

#----------------------------------------------------------------------------
# --
# GNAT ncurses Binding --
# Makefile --
# --
# Version 00.92 --
# --
# The ncurses Ada95 binding is copyrighted 1996 by --
# Juergen Pfeifer, Email: Juergen.Pfeifer@T-Online.de --
# --
# Permission is hereby granted to reproduce and distribute this --
# binding by any means and for any fee, whether alone or as part --
# of a larger distribution, in source or in binary form, PROVIDED --
# this notice is included with any such distribution, and is not --
# removed from any of its header files. Mention of ncurses and the --
# author of this binding in any applications linked with it is --
# highly appreciated. --
# --
# This binding comes AS IS with no warranty, implied or expressed. --
#----------------------------------------------------------------------------
# Version Control
# $Revision: 1.3 $
#
SHELL = /bin/sh
THIS = Makefile
SUBDIRS = @ADA_SUBDIRS@
all ::
for d in $(SUBDIRS); do \
(cd $$d ; $(MAKE) $@) ;\
done
clean ::
for d in $(SUBDIRS); do \
(cd $$d ; $(MAKE) $@) ;\
done
distclean ::
for d in $(SUBDIRS); do \
(cd $$d ; $(MAKE) $@) ;\
done
rm -f Makefile
realclean ::
for d in $(SUBDIRS); do \
(cd $$d ; $(MAKE) $@) ;\
done
rm -f Makefile
mostlyclean ::
for d in $(SUBDIRS); do \
(cd $$d ; $(MAKE) $@) ;\
done
install ::