X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=Ada95%2FMakefile.in;h=8d78bbf4f19c4335d73c6d9cc51fb4062d7f77de;hp=b1743cfa6e3a7dcafcb11c5afd57b1c6d36f3066;hb=d30f99439fcc8d4bb4c38e5c4afb4f6555fc6ad4;hpb=a8987e73ec254703634802b4f7ee30d3a485524d diff --git a/Ada95/Makefile.in b/Ada95/Makefile.in index b1743cfa..8d78bbf4 100644 --- a/Ada95/Makefile.in +++ b/Ada95/Makefile.in @@ -1,5 +1,7 @@ +# $Id: Makefile.in,v 1.26 2021/01/23 20:34:50 tom Exp $ ############################################################################## -# Copyright (c) 1998 Free Software Foundation, Inc. # +# Copyright 2020,2021 Thomas E. Dickey # +# Copyright 1998-2010,2015 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"), # @@ -29,14 +31,15 @@ # Author: Juergen Pfeifer, 1996 # # Version Control -# $Revision: 1.15 $ +# $Revision: 1.26 $ # -SHELL = /bin/sh +SHELL = @SHELL@ +VPATH = @srcdir@ THIS = Makefile SUBDIRS = @ADA_SUBDIRS@ -CF_MFLAGS = @cf_cv_makeflags@ +TOP_MFLAGS = @cf_cv_makeflags@ DESTDIR="$(DESTDIR)" RPATH_LIST="$(RPATH_LIST)" @SET_MAKE@ all \ @@ -47,21 +50,33 @@ install.libs \ uninstall \ uninstall.libs :: for d in $(SUBDIRS); do \ - (cd $$d ; $(MAKE) $(CF_MFLAGS) $@) ;\ + ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\ done clean \ mostlyclean :: for d in $(SUBDIRS); do \ - (cd $$d ; $(MAKE) $(CF_MFLAGS) $@) ;\ + ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\ done distclean \ realclean :: for d in $(SUBDIRS); do \ - (cd $$d ; $(MAKE) $(CF_MFLAGS) $@) ;\ + ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\ done - rm -f Makefile + rm -rf lib + for lib_kind in static dynamic; do \ + rm -rf $${lib_kind}-ali; \ + rm -rf $${lib_kind}-obj; \ + done + -rm -f config.cache config.log config.status include/ncurses_cfg.h + -rm -f Makefile + +tags : + @ + +preinstall : + @ install.data : @