## FILE: GNUmakefile.postamble # # Project Tryst # # Creator Chris B. Vetter # Maintainer Chris B. Vetter # Creation Date Mon Sep 11 14:38:24 CEST 2006 # # Copyright (c) 2006 # # Tryst is free software under the terms of a dual BSD/LGPL license. # For a full copyright description, see the COPYRIGHT file. # ############################################################################ # # Things to do before compiling # before-all:: if test "${A_VERSION}" -lt "${R_VERSION}" ; \ then \ echo; \ echo "You need at least GNUstep Base ${R_VERSION}"; \ echo; \ exit 1; \ fi ifeq ($(shell ls "$(GNUSTEP_SYSTEM_ROOT)"/Library/Headers/Foundation/NSStream.h),) echo echo "Although your GNUstep Base is recent enough, it lacks the" echo "implementation of NSStream. You might want to check out a" echo "newer version of GNUstep here:" echo " https://gna.org/svn/?group=gnustep" echo exit 1 endif # # Things to do after compiling # after-all:: # # Things to do before installing # before-install:: # # Things to do after installing # after-install:: # # Things to do before uninstalling # before-uninstall:: # # Things to do after uninstalling # after-uninstall:: # # 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:: # # Things to do before checking # before-check:: # # Things to do after checking # after-check:: # # End of File.