File: Makefile

package info (click to toggle)
openni-sensor-primesense 5.1.0.41-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,720 kB
  • ctags: 7,739
  • sloc: cpp: 34,506; ansic: 14,901; sh: 237; python: 155; makefile: 93; xml: 8
file content (15 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SRC_FILES = \
			../../../../Source/XnFormats/*.cpp

LIB_NAME = XnFormats
USED_LIBS = XnCore OpenNI
DEFINES = XN_FORMATS_EXPORTS

ifeq ($(shell ld -ljpeg -o /dev/null 1>&2 2> /dev/null; echo $$?), 0)
  USED_LIBS += jpeg
else
  INC_DIRS  += ../../../../Source/External/LibJPEG
  SRC_FILES += ../../../../Source/External/LibJPEG/*.c
endif

include ../EngineLibMakefile