X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=Ada95%2FMakefile.in;h=f820793302108ca3d3378a95c24ecbc356b8b03e;hp=49bbb60232e9aedd183c83fa39589c236394d543;hb=b802d89ac4a8abdc19fd39ec9bdc9a300c3dd181;hpb=661078ddbde3ce0f3b06e95642fbb9b5fef7dca1 diff --git a/Ada95/Makefile.in b/Ada95/Makefile.in index 49bbb602..f8207933 100644 --- a/Ada95/Makefile.in +++ b/Ada95/Makefile.in @@ -1,5 +1,6 @@ +# $Id: Makefile.in,v 1.21 2010/11/27 21:45:27 tom Exp $ ############################################################################## -# Copyright (c) 1998 Free Software Foundation, Inc. # +# Copyright (c) 1998-2003,2010 Free Software Foundation, Inc. # # # # Permission is hereby granted, free of charge, to any person obtaining a # # copy of this software and associated documentation files (the "Software"), # @@ -26,38 +27,55 @@ # authorization. # ############################################################################## # -# Author: Juergen Pfeifer 1996 +# Author: Juergen Pfeifer, 1996 # # Version Control -# $Revision: 1.10 $ +# $Revision: 1.21 $ # SHELL = /bin/sh +VPATH = @srcdir@ THIS = Makefile SUBDIRS = @ADA_SUBDIRS@ +CF_MFLAGS = @cf_cv_makeflags@ +@SET_MAKE@ + all \ +libs \ sources \ install \ install.libs \ uninstall \ uninstall.libs :: for d in $(SUBDIRS); do \ - (cd $$d ; $(MAKE) $@) ;\ + (cd $$d ; $(MAKE) $(CF_MFLAGS) $@) ;\ done clean \ mostlyclean :: for d in $(SUBDIRS); do \ - (cd $$d ; $(MAKE) $@) ;\ + (cd $$d ; $(MAKE) $(CF_MFLAGS) $@) ;\ done distclean \ realclean :: for d in $(SUBDIRS); do \ - (cd $$d ; $(MAKE) $@) ;\ + (cd $$d ; $(MAKE) $(CF_MFLAGS) $@) ;\ + done + rm -rf lib + for lib_kind in static dynamic; do \ + rm -rf $${lib_kind}-ali; \ + rm -rf $${lib_kind}-obj; \ done - rm -f Makefile + -rm -f config.cache config.log config.status include/ncurses_cfg.h + -rm -f Makefile + +tags : + @ + +preinstall : + @ install.data : @