-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
29 lines (25 loc) · 922 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
.PHONY: doxygen
doxygen:
mkdir -p doc/api
doxygen doxygen/doxygen.cfg
.PHONY: clean clean-doxygen clean-deps clean-all
# clean:
# @echo ' removing torsten test executables'
# @$(RM) $(call findfiles,stan/math/torsten/test,*_test$(EXE))
# @$(RM) $(call findfiles,stan/math/torsten/test,*_test.d)
# @$(RM) $(call findfiles,stan/math/torsten/test,*_test.d.*)
# @$(RM) $(call findfiles,stan/math/torsten/test,*_test.xml)
# @$(RM) $(call findfiles,stan/math/torsten/test,*.o)
clean-doxygen:
@echo ' removing doxygen'
$(RM) -r doc/api
# clean-deps:
# @echo ' removing dependency files'
# @$(RM) $(call findfiles,stan,*.d)
# @$(RM) $(call findfiles,test,*.d)
# @$(RM) $(call findfiles,lib,*.d)
# @$(RM) $(call findfiles,stan,*.d.*)
# @$(RM) $(call findfiles,test,*.d.*)
# @$(RM) $(call findfiles,lib,*.d.*)
# @$(RM) $(call findfiles,stan,*.dSYM)
clean-all: clean clean-doxygen clean-deps clean-libraries