-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
37 lines (30 loc) · 884 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
30
31
32
33
34
35
36
37
#*******************************************************************************
# Makefile (top-level)
#-------------------------------------------------------------------------------
##
# \file Makefile
# \library Documents
# \author Chris Ahlstrom
# \date 2015-07-05
# \update 2022-05-15
# \version $Revision$
# \license $XPC_SUITE_GPL_LICENSE$
#
# Makefile for yoshimi-doc.
#
#-------------------------------------------------------------------------------
.PHONY: clean
all:
./Makefile-helper
clean:
./Makefile-helper clean
rm -f make.log
debug:
./Makefile-helper debug
optimize:
./Makefile-helper optimize
opt:
./Makefile-helper opt
#******************************************************************************
# vim: ts=3 sw=3 noet ft=automake
#------------------------------------------------------------------------------