diff options
author | Max Horn | 2002-08-21 17:35:46 +0000 |
---|---|---|
committer | Max Horn | 2002-08-21 17:35:46 +0000 |
commit | ee3ea28e6cbef89ea9416c3a38fef422a77392a3 (patch) | |
tree | 089a643d599b2bba5bd6378e8057b72e6f7f98fd /backends/x11 | |
parent | c0324a9e6df3b472b5483803983e8831f3777a44 (diff) | |
download | scummvm-rg350-ee3ea28e6cbef89ea9416c3a38fef422a77392a3.tar.gz scummvm-rg350-ee3ea28e6cbef89ea9416c3a38fef422a77392a3.tar.bz2 scummvm-rg350-ee3ea28e6cbef89ea9416c3a38fef422a77392a3.zip |
first go at modularizing the build system
svn-id: r4796
Diffstat (limited to 'backends/x11')
-rw-r--r-- | backends/x11/build.rules | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/backends/x11/build.rules b/backends/x11/build.rules new file mode 100644 index 0000000000..1540d452d6 --- /dev/null +++ b/backends/x11/build.rules @@ -0,0 +1,7 @@ +# Build settings for the X11 backend +MODULES += backends/x11 +OBJS += backends/x11/x11.o +DEFINES += -DUNIX -DX11_BACKEND +LDFLAGS += -L/usr/X11R6/lib -L/usr/local/lib +INCLUDES+= -I/usr/X11R6/include +LIBS += -lpthread -lXext -lX11 |