File: Makefile

package info (click to toggle)
fastdnaml 1.2.2-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 576 kB
  • ctags: 384
  • sloc: ansic: 3,927; sh: 549; makefile: 22
file content (18 lines) | stat: -rw-r--r-- 395 bytes parent folder | download | duplicates (10)
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) $(CFLAGS) -o fastDNAml fastDNAml.o $(LDFLAGS)

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

clean :
	$(RM) fastDNAml.o