mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 10:49:12 +00:00
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
31 lines
790 B
Makefile
31 lines
790 B
Makefile
PACKAGE_NAME = gnustep-gui
|
|
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
|
|
|
|
Sndfile_PRINCIPAL_CLASS = SndfileSource
|
|
AudioOutput_PRINCIPAL_CLASS = AudioOutputSink
|
|
|
|
Sndfile_BUNDLE_LIBS = -lsndfile
|
|
AudioOutput_BUNDLE_LIBS = -lao
|
|
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|