-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
30 lines (25 loc) · 822 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
#*******************************************************************************
# Makefile (top-level)
#-------------------------------------------------------------------------------
##
# \file Makefile
# \library Documents
# \author Chris Ahlstrom
# \date 2015-11-01
# \update 2018-09-23
# \version $Revision$
# \license $XPC_SUITE_GPL_LICENSE$
#
# Makefile for the sequencer64-doc project.
#
#-------------------------------------------------------------------------------
.PHONY: clean
all:
./Makefile-helper
clean:
./Makefile-helper clean
optimize:
./Makefile-helper optimize
#******************************************************************************
# vim: ts=3 sw=3 noet ft=automake
#------------------------------------------------------------------------------