-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (22 loc) · 694 Bytes
/
Copy pathMakefile
File metadata and controls
33 lines (22 loc) · 694 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
29
30
31
32
#----------------------------------------------------------------------------
#
# top-level makefile
#
#----------------------------------------------------------------------------
include user_defs.mk
include system_defs.mk
package = osuflow
version = 2.0
prefix = /usr/local
export prefix
tarname = $(package)
distdir = $(tarname)-$(version)
all clean:
cd Core && $(MAKE) $@ # serial flow library
cd Lattice && $(MAKE) $@ # serial flow library
serial:
cd Core && $(MAKE) clean
cd Core && $(MAKE) SERIAL=YES # serial flow library
cd Lattice && $(MAKE) clean
cd Lattice && $(MAKE) SERIAL=YES # serial flow library
.PHONY: FORCE all clean check dist distcheck install uninstall