sdl stuff modified to work well on irix

This commit is contained in:
Chris Want 2003-07-20 23:26:38 +00:00
parent 85f961bdb4
commit 2a4fae99ce

@ -80,9 +80,12 @@ all debug::
else else
export NAN_FTGL ?= $(LCGDIR)/ftgl export NAN_FTGL ?= $(LCGDIR)/ftgl
endif endif
export NAN_SDL ?= $(shell sdl-config --prefix)
export NAN_SDLLIBS ?= $(shell sdl-config --libs) ifneq ($(OS), irix)
export NAN_SDLCFLAGS ?= $(shell sdl-config --cflags) export NAN_SDL ?= $(shell sdl-config --prefix)
export NAN_SDLLIBS ?= $(shell sdl-config --libs)
export NAN_SDLCFLAGS ?= $(shell sdl-config --cflags)
endif
# Platform Dependent settings go below: # Platform Dependent settings go below: