Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Sat, Aug 31, 03:08

Makefile

###
### Standard Makefile for Webots physics plugins for libamarsi-quad physics plug-in
###
### Supported platforms: Windows, Mac OS X, Linux
### Supported languages: C, C++
###
### Authors: Olivier Michel - www.cyberbotics.com
### Revised: Yvan Bourquin - September 30th, 2009.
###
### Uncomment the variables to customize the Makefile
### -----C Sources-----
###
### if your plugin uses several C source files:
# C_SOURCES = my_plugin.c my_clever_algo.c my_graphics.c
### -----C++ Sources-----
###
### if your plugin uses several C++ source files:
# CPP_SOURCES = my_plugin.cpp my_clever_algo.cpp my_graphics.cpp
### or
# CC_SOURCES = my_plugin.cc my_clever_algo.cc my_graphics.cc
### -----Options-----
###
### if special CFLAGS are necessary, for example to set optimization level or
### to find include files:
# CFLAGS=-O3 -I/my_library_path/include
###
### if your plugin needs additional libraries:
# LIBRARIES=-L/path/to/my/library -lmy_library -lmy_other_library
### Do not modify: this includes Webots global Makefile.include
CC=/usr/bin/gcc
CXX=/usr/bin/g++
CPP_SOURCES= liboncilla-webots-plugin.cpp
CFLAGS=-O3 `pkg-config --cflags libwebots-plugin-0.3`
LIBRARIES=`pkg-config --libs libwebots-plugin-0.3`
space :=
space +=
WEBOTS_HOME_PATH=$(subst $(space),\ ,$(strip $(subst \,/,$(WEBOTS_HOME))))
include /usr/local/webots/resources/projects/default/plugins/physics/Makefile.include

Event Timeline