From 44b2ff35cf0e7aa0cb394acb9e44fb39ab068b71 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 6 Feb 2007 19:35:28 +0000 Subject: Use install command instead of CHMOD, CP, and MKDIR. Drop all POSTBUILD stuff as it is no longer used. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5663 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Makefile.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'FL') diff --git a/FL/Makefile.in b/FL/Makefile.in index 79385b3b0..bd7b2c914 100644 --- a/FL/Makefile.in +++ b/FL/Makefile.in @@ -3,7 +3,7 @@ # # Header makefile for the Fast Light Tool Kit (FLTK). # -# Copyright 1998-2005 by Bill Spitzak and others. +# Copyright 1998-2007 by Bill Spitzak and others. # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public @@ -35,12 +35,12 @@ depend: install: echo "Installing include files in $(DESTDIR)$(includedir)..." - -$(MKDIR) -p $(DESTDIR)$(includedir) + -$(INSTALL_DIR) -p $(DESTDIR)$(includedir) $(RMDIR) $(DESTDIR)$(includedir)/FL - $(MKDIR) $(DESTDIR)$(includedir)/FL - $(CHMOD) 755 $(DESTDIR)$(includedir)/FL - $(CP) ../FL/*.[hHr] $(DESTDIR)$(includedir)/FL - $(CHMOD) 644 $(DESTDIR)$(includedir)/FL/*.[hHr] + $(INSTALL_DIR) $(DESTDIR)$(includedir)/FL + for file in *.[hH]; do \ + $(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/FL; \ + done @HLINKS@ cd $(DESTDIR)$(includedir)/FL;\ @HLINKS@ for file in *.H; do\ @HLINKS@ $(RM) "`basename $$file H`h";\ -- cgit v1.2.3