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
This commit is contained in:
Kent Mein 2004-05-04 16:26:52 +00:00
parent 84009013f6
commit 2620ee4dc2
1 changed files with 1 additions and 4 deletions

View File

@ -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