2015-02-12 15:58:14 +00:00
|
|
|
## -*- mode: makefile; tab-width: 4 -*-
|
|
|
|
|
|
|
|
include $(top_srcdir)/Makefile.incl
|
|
|
|
|
|
|
|
## list the apps that should be build
|
|
|
|
## NOTE: nvcuda and wrappture need external libraries
|
2021-03-21 22:30:46 +00:00
|
|
|
SUBDIRS = condor example_app multi_thread sleeper worker wrapper
|
|
|
|
|
|
|
|
if !ANDROID
|
2021-03-29 21:33:27 +00:00
|
|
|
SUBDIRS += vboxmonitor vboxwrapper
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_WITH_VCPKG
|
|
|
|
SUBDIRS += wrappture
|
2021-03-21 22:30:46 +00:00
|
|
|
endif
|
2021-03-09 18:00:08 +00:00
|
|
|
|
|
|
|
## build openclapp if you have opencl on your device
|
2021-03-16 15:27:25 +00:00
|
|
|
if BUILD_OPENCL
|
2021-03-29 21:33:27 +00:00
|
|
|
SUBDIRS += openclapp
|
2021-03-09 13:46:35 +00:00
|
|
|
endif
|
2021-03-09 18:00:08 +00:00
|
|
|
|
2021-01-26 22:13:57 +00:00
|
|
|
maintainer-clean:
|