forked from githwxi/ATS-Postiats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile_devl
41 lines (38 loc) · 958 Bytes
/
Makefile_devl
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
#
# A few simple steps to build ATS2
# This is primarily for people wanting to use the
# (unreleased) version of ATS2 available at GitHub:
#
# https://github.com/githwxi/ATS-Postiats
#
######
#
# author: Hongwei Xi (gmhwxiATgmailDOTcom)
# author: Brandon Barker (Brandon.BarkerATgmailDOTcom)
#
######
#
# Note:
# Please execute the following command-line if you have
# never done it explicitly before:
#
# make -f codegen/Makefile_atslib
#
######
all:: bin_patscc
all:: atslib_update
######
#
src_depend: ; touch src/.depend
src_cleanall: ; make -C src cleanall
#
bin_patscc: src_patscc ; cp -f utils/atscc/patscc bin/patscc
src_patscc: bin_patsopt ; make -C utils/atscc -f Makefile all
#
bin_patsopt: src_patsopt ; cp -f src/patsopt bin/patsopt
src_patsopt: src_depend src_cleanall ; make -C src -f Makefile all
#
atslib_update:: ; make -f codegen/Makefile_atslib
atslib_update:: ; make -C ccomp/atslib -f Makefile
#
###### end of [Makefile_devl] ######