mirror of https://github.com/BOINC/boinc.git
23 lines
465 B
Makefile
23 lines
465 B
Makefile
## -*- mode: makefile; tab-width: 4 -*-
|
|
|
|
include $(top_srcdir)/Makefile.incl
|
|
|
|
## list the apps that should be build
|
|
## NOTE: nvcuda and wrappture need external libraries
|
|
SUBDIRS = condor example_app multi_thread sleeper worker wrapper
|
|
|
|
if !ANDROID
|
|
SUBDIRS += vboxmonitor vboxwrapper
|
|
endif
|
|
|
|
if BUILD_WITH_VCPKG
|
|
SUBDIRS += wrappture
|
|
endif
|
|
|
|
## build openclapp if you have opencl on your device
|
|
if BUILD_OPENCL
|
|
SUBDIRS += openclapp
|
|
endif
|
|
|
|
maintainer-clean:
|