From 3134818a7477e7f78a33ffd88f6fc1e13f5527c4 Mon Sep 17 00:00:00 2001 From: hybrid Date: Wed, 30 Apr 2014 09:17:33 +0000 Subject: [PATCH] Add examples 17 and 30+ to Linux build support. git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4818 dfc29bdd-3216-0410-991c-e03cc46cb475 --- examples/17.HelloWorld_Mobile/Makefile | 39 ++++++++++++++++++++++++++ examples/Makefile | 2 +- 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 examples/17.HelloWorld_Mobile/Makefile diff --git a/examples/17.HelloWorld_Mobile/Makefile b/examples/17.HelloWorld_Mobile/Makefile new file mode 100644 index 00000000..a29ccaa2 --- /dev/null +++ b/examples/17.HelloWorld_Mobile/Makefile @@ -0,0 +1,39 @@ +# Makefile for Irrlicht Examples +# It's usually sufficient to change just the target name and source file list +# and be sure that CXX is set to a valid compiler +Target = 17.HelloWorld_Mobile +Sources = main.cpp + +# general compiler settings +CPPFLAGS = -I../../include -I/usr/X11R6/include +CXXFLAGS = -O3 -ffast-math +#CXXFLAGS = -g -Wall + +#default target is Linux +all: all_linux + +ifeq ($(HOSTTYPE), x86_64) +LIBSELECT=64 +endif + +# target specific settings +all_linux: LDFLAGS = -L/usr/X11R6/lib$(LIBSELECT) -L../../lib/Linux -lIrrlicht -lGL -lXxf86vm -lXext -lX11 -lXcursor +all_linux clean_linux: SYSTEM=Linux +all_win32: LDFLAGS = -L../../lib/Win32-gcc -lIrrlicht -lopengl32 -lm +all_win32: CPPFLAGS += -D__GNUWIN32__ -D_WIN32 -DWIN32 -D_WINDOWS -D_MBCS -D_USRDLL +all_win32 clean_win32: SYSTEM=Win32-gcc +all_win32 clean_win32: SUF=.exe +# name of the binary - only valid for targets which set SYSTEM +DESTPATH = ../../bin/$(SYSTEM)/$(Target)$(SUF) + +all_linux all_win32: + $(warning Building...) + $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(Sources) -o $(DESTPATH) $(LDFLAGS) + +clean: clean_linux clean_win32 + $(warning Cleaning...) + +clean_linux clean_win32: + @$(RM) $(DESTPATH) + +.PHONY: all all_win32 clean clean_linux clean_win32 diff --git a/examples/Makefile b/examples/Makefile index da658814..e187a005 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,4 +1,4 @@ -DIRS = $(wildcard [012]* Demo) +DIRS = $(wildcard [0123]* Demo) all: $(DIRS)