Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2004-05-04 20:26:52 +0400
committerKent Mein <mein@cs.umn.edu>2004-05-04 20:26:52 +0400
commit2620ee4dc2ad101f5581b947ef861c4526402639 (patch)
tree526d6a2f721c6686bdd4e0b26cd22fd91d8de253 /intern
parent84009013f69fed9bcd301722fe64a4f11e15b659 (diff)
Shortened up the Makefile since freebsd,linux and solaris do the
same stuff: Basically use this instead of seperate sections for each platform. ifeq ($(OS),$(findstring $(OS), "linux freebsd solaris")) Kent
Diffstat (limited to 'intern')
-rw-r--r--intern/SoundSystem/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/intern/SoundSystem/Makefile b/intern/SoundSystem/Makefile
index 0aa46de4b74..926001c1aab 100644
--- a/intern/SoundSystem/Makefile
+++ b/intern/SoundSystem/Makefile
@@ -47,10 +47,7 @@ ifneq ($(NAN_NO_OPENAL),true)
ifeq ($(OS),darwin)
DIRS += openal
endif
- ifeq ($(OS),freebsd)
- DIRS += openal sdl
- endif
- ifeq ($(OS),$(findstring $(OS), "linux"))
+ ifeq ($(OS),$(findstring $(OS), "linux freebsd solaris"))
DIRS += openal sdl
endif
else