forked from smackers/smack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (24 loc) · 705 Bytes
/
Copy pathMakefile
File metadata and controls
28 lines (24 loc) · 705 Bytes
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
##===- projects/smack/Makefile ----------------------------*- Makefile -*-===##
#
# This is a Makefile for SMACK.
#
##===----------------------------------------------------------------------===##
#
# Indicates our relative path to the top of the project's root directory.
#
LEVEL = .
DIRS = lib tools
EXTRA_DIST = include
#
# Include the Master Makefile that knows how to build all.
#
include $(LEVEL)/Makefile.common
#
# Standardized source code formatting.
# -- probably should be run systematically with build.
#
format:
astyle --options=astyle.conf $$(find lib -name "*.cpp")
astyle --options=astyle.conf $$(find include -name "*.h")
distclean:: clean
${RM} -f Makefile.common Makefile.config