From ee3ea28e6cbef89ea9416c3a38fef422a77392a3 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 21 Aug 2002 17:35:46 +0000 Subject: first go at modularizing the build system svn-id: r4796 --- backends/sdl/build.rules | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 backends/sdl/build.rules (limited to 'backends/sdl') diff --git a/backends/sdl/build.rules b/backends/sdl/build.rules new file mode 100644 index 0000000000..3bdb7b58ce --- /dev/null +++ b/backends/sdl/build.rules @@ -0,0 +1,16 @@ +# Build settings for the SDL backend +MODULES += backends/sdl +OBJS += backends/sdl/sdl.o +DEFINES += -DUNIX +INCLUDES += `sdl-config --cflags` +LIBS += `sdl-config --libs` + +# Uncomment this (instead of the above) to activate the SDL with OpenGL output +# OBJS += backends/sdl/sdl_gl.o +# DEFINES += -DUNIX +# INCLUDES += `sdl-config --cflags` +# LIBS += `sdl-config --libs` -lGL + +# Uncomment this in addition to the above if you compile on Mac OS X +DEFINES += -DMACOSX +LIBS += -framework QuickTime -framework AudioUnit -- cgit v1.2.3