mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-27 18:50:47 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32737 72102866-910b-0410-8b05-ffd578937521
17 lines
350 B
Text
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
|
|
|