mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 02:10:48 +00:00
* 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:
parent
695963974f
commit
151a751f23
2 changed files with 21 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue