-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathMakefile
56 lines (46 loc) · 1.75 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
SRC = change_impact.cpp \
goto_diff_base.cpp \
goto_diff_languages.cpp \
goto_diff_main.cpp \
goto_diff_parse_options.cpp \
syntactic_diff.cpp \
unified_diff.cpp \
# Empty last line
OBJ += ../ansi-c/ansi-c$(LIBEXT) \
../cpp/cpp$(LIBEXT) \
../linking/linking$(LIBEXT) \
../big-int/big-int$(LIBEXT) \
../goto-programs/goto-programs$(LIBEXT) \
../assembler/assembler$(LIBEXT) \
../pointer-analysis/pointer-analysis$(LIBEXT) \
../goto-instrument/source_lines$(OBJEXT) \
../goto-instrument/cover$(OBJEXT) \
../goto-instrument/cover_basic_blocks$(OBJEXT) \
../goto-instrument/cover_filter$(OBJEXT) \
../goto-instrument/cover_instrument_assume$(OBJEXT) \
../goto-instrument/cover_instrument_branch$(OBJEXT) \
../goto-instrument/cover_instrument_condition$(OBJEXT) \
../goto-instrument/cover_instrument_decision$(OBJEXT) \
../goto-instrument/cover_instrument_location$(OBJEXT) \
../goto-instrument/cover_instrument_mcdc$(OBJEXT) \
../goto-instrument/cover_instrument_other$(OBJEXT) \
../goto-instrument/cover_util$(OBJEXT) \
../analyses/analyses$(LIBEXT) \
../langapi/langapi$(LIBEXT) \
../xmllang/xmllang$(LIBEXT) \
../util/util$(LIBEXT) \
../solvers/solvers$(LIBEXT) \
../json/json$(LIBEXT) \
# Empty last line
INCLUDES= -I ..
LIBS =
include ../config.inc
include ../common
CLEANFILES = goto-diff$(EXEEXT)
all: goto-diff$(EXEEXT)
###############################################################################
goto-diff$(EXEEXT): $(OBJ)
$(LINKBIN)
.PHONY: goto-diff-mac-signed
goto-diff-mac-signed: goto-diff$(EXEEXT)
strip goto-diff$(EXEEXT) ; codesign -v -s $(OSX_IDENTITY) goto-diff$(EXEEXT)