# -*-makefile-*- # Makefile.postamble # # Copyright (C) 1997,2002,2004,2005 Free Software Foundation, Inc. # # Written by: Scott Christley # # This file is part of the GNUstep Database Library. # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this library; # If not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # # Makefile.postamble # # Project specific makefile rules # # Uncomment the targets you want. # The double colons (::) are important, do not make them single colons # otherwise the normal makefile rules will not be performed. # # Things to do before compiling # before-all:: # Things to do after compiling # after-all:: # Things to do before installing # before-install:: # # The following rule is important mainly for packaging, because in that case # you install into a fake system tree, and the directory is not there. # $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Auxiliary: $(MKINSTALLDIRS) $@ # Things to do after installing after-install:: $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Auxiliary $(INSTALL_DATA) gdl2.make \ $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Auxiliary/gdl2.make # Things to do before uninstalling # before-uninstall:: # Things to do after uninstalling after-uninstall:: rm -f $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Auxiliary/gdl2.make # Things to do before cleaning # before-clean:: # Things to do after cleaning # after-clean:: # Things to do before distcleaning # before-distclean:: # Things to do after distcleaning after-distclean:: rm -rf config.cache config.log config.status rm -rf config.h gdl2.make config.make rm -rf autom4te.cache # Things to do before checking # before-check:: # Things to do after checking # after-check::