File: Makefile

package info (click to toggle)
haskell-hashtables 1.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 416 kB
  • sloc: haskell: 4,662; ansic: 590; makefile: 14; sh: 4
file content (14 lines) | stat: -rw-r--r-- 306 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
check: default.c common.c check.c sse-42.c
	@echo "Testing portable version..."
	@gcc -o check -O3 default.c common.c check.c
	@./check
	@rm check

	@echo
	@echo "Testing SSE 4.2 version..."
	@gcc -o check -O3 -msse4.2 sse-42.c common.c check.c sse-42-check.c
	@./check
	@rm check

clean:
	rm -f *.o check