-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGNUmakefile
53 lines (46 loc) · 1.84 KB
/
GNUmakefile
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
#!/usr/bin/gmake
## SPDX-License-Identifier: GPL-3.0-or-later
## Description:
## This file is part of the Reflective Persistent System. refpersys.org
## thre gccjit-refpersys variant
## It is its GNUmakefile, for the GNU make automation builder.
##
## Author(s):
## Basile Starynkevitch <[email protected]>
## Abhishek Chakravarti <[email protected]>
## Nimesh Neema <[email protected]>
## Abdullah Siddiqui <[email protected]>
##
## © Copyright 2024 The Reflective Persistent System Team
##
## License:
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>
export
#CC=/usr/bin/gcc-14
CC=/usr/bin/gcc
GITID:= $(shell ./do-generate-gitid.sh)
SHORTGITID:= $(shell ./do-generate-gitid.sh -s)
SOURCEDIR:= $(shell /bin/pwd)
CFLAGS= -Wall -Wextra -g -O -std=gnu99 -I/usr/local/include \
-DSHORTGITID=\"$(SHORTGITID)\" -DSOURCEDIR=\"$(SOURCEDIR)\"
RM= /bin/rm -vf
.PHONY: all clean tests test00
all: gccjit-refpersys
clean:
$(RM) *.o *.i *~ gccjit-refpersys a.out
gccjit-refpersys: main.o persist.o
$(CC) $^ -lbsd -lgccjit -L/usr/local/lib -lunistring -lbacktrace -ldl -lreadline -lz -o $@
test00: gccjit-refpersys GNUmakefile cold-load.sh
./cold-load.sh