X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=makefile.old;h=b790e48584c8c80930029ec82bed3425a017573e;hb=2ee52e8aac60f13cdbfb53adcacac57985f4e24f;hp=c042a0814857b0aae2cf3ac071a2411a5fdd9dbd;hpb=d127a872a5d1820b864c11ea501438b68d94da89;p=lugaru.git diff --git a/makefile.old b/makefile.old index c042a08..b790e48 100644 --- a/makefile.old +++ b/makefile.old @@ -101,12 +101,15 @@ ifeq ($(strip $(macosx)),true) LDFLAGS += -framework Cocoa -framework OpenGL -framework IOKit -framework CoreFoundation -framework Carbon -framework OpenAL LDFLAGS += ./libSDL-1.2.0.dylib ./libSDLmain-osx.a else - CXX := /opt/crosstool/gcc-4.1.2-glibc-2.3.6/i686-unknown-linux-gnu/i686-unknown-linux-gnu/bin/g++ - CC := /opt/crosstool/gcc-4.1.2-glibc-2.3.6/i686-unknown-linux-gnu/i686-unknown-linux-gnu/bin/gcc - LD := /opt/crosstool/gcc-4.1.2-glibc-2.3.6/i686-unknown-linux-gnu/i686-unknown-linux-gnu/bin/g++ + CXX := g++ + CC := gcc + LD := g++ CFLAGS += -DPLATFORM_LINUX=1 - LDFLAGS += ./libSDL-1.2.so.0 -Wl,-rpath,\$$ORIGIN + LDFLAGS += `pkg-config --libs sdl` + INCLUDES += `pkg-config --cflags sdl` + # Don't use bundled headers + SDLDIR := /dummy ifeq ($(strip $(use_devil)),true) LDFLAGS += ./libIL.so.1 ./libILU.so.1 ./libILUT.so.1 @@ -115,7 +118,10 @@ else ifeq ($(strip $(use_fmod)),true) POSTLDFLAGS += -lpthread ./libfmod-linux-x86.a else - LDFLAGS += ./libopenal.so.1 + LDFLAGS += `pkg-config --libs openal` + INCLUDES += `pkg-config --cflags openal` + # Don't use bundled headers + OPENALDIR := /dummy endif endif