File: Makefile

package info (click to toggle)
fastdnaml 1.2.2-18
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,156 kB
  • sloc: ansic: 3,910; sh: 571; makefile: 46
file content (18 lines) | stat: -rw-r--r-- 421 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Makefile is courtesy of Marc Baudoin -- babafou@babafou.eu.org
# On many systems I prefer the gcc compiler over the native compiler
#
     CC = cc # or gcc
 CFLAGS += -O
LDFLAGS += -lm
     RM = rm -f

all : fastDNAml

fastDNAml : fastDNAml.o
	$(CC) $(CPPFLAGS) $(CFLAGS) -o fastDNAml fastDNAml.o $(LDFLAGS)

fastDNAml.o : fastDNAml.c fastDNAml.h
	$(CC) $(CPPFLAGS) $(CFLAGS) -c fastDNAml.c

clean :
	$(RM) fastDNAml.o