Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93714635
Makefile
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 30, 22:25
Size
1 KB
Mime Type
text/x-makefile
Expires
Mon, Dec 2, 22:25 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22693039
Attached To
R6624 liboncilla Webots Interface
Makefile
View Options
###
### 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
Log In to Comment