File: Makefile

package info (click to toggle)
curry-tools 1.0.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,492 kB
  • ctags: 121
  • sloc: makefile: 470; sh: 421
file content (21 lines) | stat: -rw-r--r-- 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Generate optimization tools for Curry

# Required:
# - root location of the Curry System specified by variable ROOT

.PHONY: all compile install clean uninstall

all:
	@cd binding_optimization && $(MAKE) all

compile:
	@cd binding_optimization && $(MAKE) compile

install:
	@cd binding_optimization && $(MAKE) install

clean:
	@cd binding_optimization && $(MAKE) clean

uninstall:
	@cd binding_optimization && $(MAKE) uninstall