* Tools/sound/GNUmakefile: Fix circular dependency issue.

Added _INCLUDE_DIRS and _LIB_DIRS for each entry so that
	it can build when GNUstep is not installed.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28519 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2009-08-23 15:51:58 +00:00
parent 695963974f
commit 151a751f23
2 changed files with 21 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2009-08-23 11:50-EDT Gregory John Casamento <greg.casamento@gmail.com>
* Tools/sound/GNUmakefile: Fix circular dependency issue.
Added _INCLUDE_DIRS and _LIB_DIRS for each entry so that
it can build when GNUstep is not installed.
2009-08-23 03:52-EDT Gregory John Casamento <greg.casamento@gmail.com>
* configure: Regenerate

View file

@ -4,6 +4,21 @@ include $(GNUSTEP_MAKEFILES)/common.make
BUNDLE_NAME = Sndfile AudioOutput
BUNDLE_EXTENSION = .nssound
# These are here in case GNUstep is not installed,
# otherwise compilation will fail.
Sndfile_INCLUDE_DIRS += -I../../Headers \
-I../../Headers/Additions
Sndfile_LIB_DIRS += \
-L../../Source/$(GNUSTEP_OBJ_DIR)
AudioOutput_INCLUDE_DIRS += -I../../Headers \
-I../../Headers/Additions
AudioOutput_LIB_DIRS += \
-L../../Source/$(GNUSTEP_OBJ_DIR)
# Build the bundles.
Sndfile_OBJC_FILES = SndfileSource.m
AudioOutput_OBJC_FILES = AudioOutputSink.m