-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
42 lines (32 loc) · 1.54 KB
/
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
38
39
40
41
42
#/************************************************************************ *
#* Goma - Multiphysics finite element software *
#* Sandia National Laboratories *
#* *
#* Copyright (c) 2014 Sandia Corporation. *
#* *
#* Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, *
#* the U.S. Government retains certain rights in this software. *
#* *
#* This software is distributed under the GNU General Public License. *
#\************************************************************************/
# The main Makefile is located in the src directory
# Available targets are
# DEFAULT (all): makes the goma executable and libs
# debug: makes the gomad executable
# install: installs goma executable, libraries, and include files to PREFIX
# clean: removes the libraries and object files
# realclean: performs clean, and removes executables
# Make changes to settings.mk, see settings.mk-example
default: all
.DEFAULT:
cd src && ${MAKE} $@
tags:
find . -name "*.[ch]" -exec etags -a '{}' \;
compile_commands.json:
${MAKE} -C src realclean
bear ${MAKE} -C src all
cppcheck: compile_commands.json
cppcheck --enable=all --project=compile_commands.json
realclean:
rm -f compile_commands.json
cd src && ${MAKE} $@