File: Makefile

package info (click to toggle)
fasttree 2.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 500 kB
  • sloc: ansic: 7,809; sh: 18; makefile: 11
file content (11 lines) | stat: -rw-r--r-- 230 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11

all: fasttree fasttreeMP

fasttree:	fasttree.c
	$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $< -lm

fasttreeMP:	fasttree.c
	$(CC) -DOPENMP -fopenmp $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $< -lm

distclean clean:
	rm -f fasttree