libs-base/Source/Additions/Makefile.postamble
Richard Frith-MacDonald 7aee0158bc Cleanup and fix to build additipns library on apple systems.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32737 72102866-910b-0410-8b05-ffd578937521
2011-03-29 11:18:10 +00:00

17 lines
350 B
Text

#
# If building with the Apple Foundation, we don't include the base 'Headers'
# directory in the includes path, but we need the additions headers so we
# link to them from the current directory.
#
ifeq ($(FOUNDATION_LIB),apple)
before-all::
rm -f GNUstepBase
ln -s ../../Headers/GNUstepBase GNUstepBase
after-clean::
rm -f GNUstepBase
endif