From 2620ee4dc2ad101f5581b947ef861c4526402639 Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Tue, 4 May 2004 16:26:52 +0000 Subject: 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 --- intern/SoundSystem/Makefile | 5 +---- 1 file changed, 1 insertion(+), 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 -- cgit v1.2.3